mirror of
https://github.com/FEX-Emu/libunwind.git
synced 2024-11-27 08:20:38 +00:00
15 lines
348 B
YAML
15 lines
348 B
YAML
language: c
|
|
compiler: clang
|
|
env:
|
|
- TARGET=x86_64-linux-gnu
|
|
- TARGET=x86-linux-gnu
|
|
- TARGET=arm-linux-gnueabihf
|
|
- TARGET=aarch64-linux-gnu
|
|
# Currently experiencing build failures here
|
|
#- TARGET=powerpc64-linux-gnu
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure --target=$TARGET --host=$HOST
|
|
- make
|
|
#- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check; fi
|