scripts: docker: update gcc cross compiler to 8.1

Signed-off-by: Pan Xiuli <xiuli.pan@linux.intel.com>
This commit is contained in:
Pan Xiuli 2018-08-07 14:09:59 +08:00
parent 876115c8cb
commit f8628623da
1 changed files with 16 additions and 11 deletions

View File

@ -44,7 +44,9 @@ RUN apt-get -y update && \
sudo \ sudo \
texinfo \ texinfo \
udev \ udev \
wget wget \
unzip
# Use ToT alsa utils for the latest topology patches. # Use ToT alsa utils for the latest topology patches.
RUN mkdir -p /root/alsa-build && cd /root/alsa-build && \ RUN mkdir -p /root/alsa-build && cd /root/alsa-build && \
@ -66,27 +68,30 @@ ENV HOME /home/sof
# build cross compiler # build cross compiler
USER sof USER sof
RUN cd /home/sof && git clone https://github.com/thesofproject/xtensa-overlay.git && \
RUN cd /home/sof && git clone https://github.com/01org/osadsp-crosstool-ng.git /home/sof/ct-ng.git && \ cd xtensa-overlay && git checkout sof-gcc8.1 && cd ../ && \
git clone https://github.com/thesofproject/crosstool-ng.git && \
mkdir -p /home/sof/work/ && \ mkdir -p /home/sof/work/ && \
cd ct-ng.git && ./bootstrap && ./configure --prefix=`pwd` && \ cd crosstool-ng && git checkout sof-gcc8.1 && \
make && make install && \ ./bootstrap && ./configure --prefix=`pwd` && make && make install && \
for arch in byt hsw bxt cnl; do \ for arch in byt hsw apl cnl; do \
./ct-ng xtensa-${arch}-elf && \ cp config-${arch}-gcc8.1-gdb8.1 .config && \
# replace the build dist to save space
sed -i 's#${CT_TOP_DIR}\/builds#\/home\/sof\/work#g' .config && \ sed -i 's#${CT_TOP_DIR}\/builds#\/home\/sof\/work#g' .config && \
./ct-ng build && \ # gl_cv_func_getcwd_path_max=yes is used to avoid too-long confdir3/confdir3/...
gl_cv_func_getcwd_path_max=yes ./ct-ng build && \
./ct-ng distclean ; \ ./ct-ng distclean ; \
done && \ done && \
cd /home/sof/ && rm -rf ct-ng.git cd /home/sof/ && rm -rf xtensa-overlay && rm -rf crosstool-ng
ENV PATH="/home/sof/work/xtensa-byt-elf/bin:${PATH}" ENV PATH="/home/sof/work/xtensa-byt-elf/bin:${PATH}"
ENV PATH="/home/sof/work/xtensa-hsw-elf/bin:${PATH}" ENV PATH="/home/sof/work/xtensa-hsw-elf/bin:${PATH}"
ENV PATH="/home/sof/work/xtensa-bxt-elf/bin:${PATH}" ENV PATH="/home/sof/work/xtensa-apl-elf/bin:${PATH}"
ENV PATH="/home/sof/work/xtensa-cnl-elf/bin:${PATH}" ENV PATH="/home/sof/work/xtensa-cnl-elf/bin:${PATH}"
RUN cd /home/sof && git clone https://github.com/jcmvbkbc/newlib-xtensa.git newlib-xtensa.git && \ RUN cd /home/sof && git clone https://github.com/jcmvbkbc/newlib-xtensa.git newlib-xtensa.git && \
cd newlib-xtensa.git && git checkout -b xtensa origin/xtensa && \ cd newlib-xtensa.git && git checkout -b xtensa origin/xtensa && \
for arch in byt hsw bxt cnl; do \ for arch in byt hsw apl cnl; do \
./configure --target=xtensa-${arch}-elf \ ./configure --target=xtensa-${arch}-elf \
--prefix=/home/sof/work/xtensa-root && \ --prefix=/home/sof/work/xtensa-root && \
make && \ make && \