File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,10 @@ case $TARGET in
46
46
;;
47
47
powerpc64le-unknown-linux-gnu)
48
48
export PREFIX=powerpc64le-linux-gnu-
49
- export QEMU_ARCH=i386
50
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; }`
52
+ export RUN_TESTS=n
51
53
;;
52
54
thumbv* -none-eabi)
53
55
export CARGO=xargo
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 update
10
- apt-get install -y --no-install-recommends \
11
- binfmt-support qemu-user-static:$QEMU_ARCH
12
- ;;
6
+ case $TRAVIS_OS_NAME in
13
7
linux)
14
8
apt-get update
15
9
apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments