[linux] use g++ as c++

Signed-off-by: Steeve Morin <steeve.morin@gmail.com>
This commit is contained in:
Steeve Morin
2014-11-05 23:39:49 +01:00
parent fd64ea0af1
commit 08a10c3137
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ ENV LD_LIBRARY_PATH ${CROSS_ROOT}/lib:${LD_LIBRARY_PATH}
RUN mkdir -p ${CROSS_ROOT} && \
cd /usr/bin && \
ln -s ${CROSS_TRIPLE}-gcc ${CROSS_TRIPLE}-cc && \
ln -s ${CROSS_TRIPLE}-cpp ${CROSS_TRIPLE}-c++ && \
ln -s ${CROSS_TRIPLE}-g++ ${CROSS_TRIPLE}-c++ && \
for i in ranlib nm ar; do \
ln -s ${CROSS_TRIPLE}-gcc-${i}-4.7 ${CROSS_TRIPLE}-${i} ; \
done