linux-armv7: Add CircleCI testing and environmental vars.

This commit is contained in:
Matt McCormick 2016-03-18 18:20:04 -04:00
parent f158989ea4
commit 8a21e98e63
2 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,7 @@ dependencies:
- docker pull thewtex/cross-compiler-android-arm
- docker pull thewtex/cross-compiler-browser-asmjs
- docker pull thewtex/cross-compiler-linux-armv6
- docker pull thewtex/cross-compiler-linux-armv7
test:
override:

View File

@ -14,6 +14,12 @@ RUN apt-get update && apt-get install -y \
ENV CROSS_TRIPLE arm-linux-gnueabihf
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
AR=/usr/bin/${CROSS_TRIPLE}-ar \
CC=/usr/bin/${CROSS_TRIPLE}-gcc \
CPP=/usr/bin/${CROSS_TRIPLE}-cpp \
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
LD=/usr/bin/${CROSS_TRIPLE}-ld
WORKDIR /usr/src