Lines Matching full:gcc
10 # Setup the base builder image with the packages we'll need to build GCC and Clang from source.
28 gcc-multilib \
41 # Build GCC 4.9 for testing our C++11 against
42 FROM builder-base as gcc-49-builder
47 RUN git clone --depth=1 --branch gcc-4_9_4-release git://gcc.gnu.org/git/gcc.git /tmp/gcc-4.9.4
48 RUN cd /tmp/gcc-4.9.4/ && ./contrib/download_prerequisites
49 RUN /tmp/build_gcc.sh --source /tmp/gcc-4.9.4 --to /opt/gcc-4.9.4
51 # Build GCC ToT for testing in all dialects.
52 FROM builder-base as gcc-tot-builder
57 RUN git clone --depth=1 git://gcc.gnu.org/git/gcc.git /tmp/gcc-tot
58 RUN cd /tmp/gcc-tot && ./contrib/download_prerequisites
59 RUN /tmp/build_gcc.sh --source /tmp/gcc-tot --to /opt/gcc-tot
83 # Copy over the GCC and Clang installations
84 COPY --from=gcc-49-builder /opt/gcc-4.9.4 /opt/gcc-4.9.4
85 COPY --from=gcc-tot-builder /opt/gcc-tot /opt/gcc-tot
88 RUN ln -s /opt/gcc-4.9.4/bin/gcc /usr/local/bin/gcc-4.9 && \
89 ln -s /opt/gcc-4.9.4/bin/g++ /usr/local/bin/g++-4.9
107 gcc-multilib \