mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 08:24:25 +01:00
Add strip and objdump to the cross tools
Signed-off-by: Steeve Morin <steeve.morin@gmail.com>
This commit is contained in:
parent
b1137b5d3c
commit
6daa79eab3
@ -10,6 +10,9 @@ RUN mkdir -p ${CROSS_ROOT} && \
|
||||
cd /usr/bin && \
|
||||
ln -s ${CROSS_TRIPLE}-gcc ${CROSS_TRIPLE}-cc && \
|
||||
ln -s ${CROSS_TRIPLE}-g++ ${CROSS_TRIPLE}-c++ && \
|
||||
for i in strip objdump; do \
|
||||
ln -s ${i} ${CROSS_TRIPLE}-${i} ; \
|
||||
done && \
|
||||
for i in ranlib nm ar; do \
|
||||
ln -s ${CROSS_TRIPLE}-gcc-${i}-4.7 ${CROSS_TRIPLE}-${i} ; \
|
||||
done
|
||||
|
@ -20,6 +20,9 @@ RUN mkdir -p ${CROSS_ROOT} && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-cc && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-g++ && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-c++ && \
|
||||
for i in strip objdump; do \
|
||||
ln -s ${i} ${CROSS_TRIPLE}-${i} ; \
|
||||
done && \
|
||||
for i in ranlib nm ar; do \
|
||||
ln -s x86_64-linux-gnu-gcc-${i}-4.7 ${CROSS_TRIPLE}-${i} ; \
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user