https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78763
--- Comment #3 from Jiri Danek <jdanek at redhat dot com> --- On Mon, Dec 12, 2016 at 11:14 AM, marxin at gcc dot gnu.org < gcc-bugzi...@gcc.gnu.org> wrote: > --- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> --- > Hi. I can confirm that the docker command triggers ICE. However manually > cloning the repository and building with GCC 6.2 works fine. > > Can you please investigate which version of compiler is used during docker > build? Is there any option to 'chroot' to build env in docker to run the > command manually? > You can run docker run --rm -it jdanekrh/gcc-78763 bash which will give you Bash terminal inside the container. You can then run make (as in the original reproduction steps), or do something else. You are the roor user and the container is based on debian jessie. You can use apt-get to install things. You can also run docker run --rm -it -v `pwd`:/mnt jdanekrh/gcc-78763 bash which does the same as before, but in addition mounts current directory as /mnt inside the container, so you can use it to move files to and from the container. I am not really expert on docker, so this may not be the smartest way to do this.