File tree 3 files changed +5
-8
lines changed
3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ sudo: required
5
5
6
6
matrix :
7
7
include :
8
+ - env : TARGET=powerpc64le-unknown-linux-gnu
9
+ os : linux
8
10
- env : TARGET=aarch64-unknown-linux-gnu
9
11
os : linux
10
12
- env : TARGET=arm-unknown-linux-gnueabi
@@ -27,8 +29,6 @@ matrix:
27
29
os : linux
28
30
- env : TARGET=powerpc64-unknown-linux-gnu
29
31
os : linux
30
- - env : TARGET=powerpc64le-unknown-linux-gnu
31
- os : linux
32
32
- env : TARGET=thumbv6m-none-eabi
33
33
os : linux
34
34
- env : TARGET=thumbv7em-none-eabi
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ case $TARGET in
47
47
powerpc64le-unknown-linux-gnu)
48
48
export PREFIX=powerpc64le-linux-gnu-
49
49
export QEMU_LD_PREFIX=/usr/powerpc64le-linux-gnu
50
+ # QEMU crashes, even running the simplest cross compiled C program:
51
+ # `int main() { return 0; }`
50
52
export RUN_TESTS=n
51
53
;;
52
54
thumbv* -none-eabi)
Original file line number Diff line number Diff line change 3
3
. $( dirname $0 ) /env.sh
4
4
5
5
install_qemu () {
6
- case ${QEMU_ARCH:- $TRAVIS_OS_NAME } in
7
- i386)
8
- dpkg --add-architecture $QEMU_ARCH
9
- apt-get install -y --no-install-recommends \
10
- binfmt-support qemu-user-static:$QEMU_ARCH
11
- ;;
6
+ case $TRAVIS_OS_NAME in
12
7
linux)
13
8
apt-get update
14
9
apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments