summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-09-19 19:42:35 -0400
committerAnthony Green <green@moxielogic.com>2022-09-19 19:42:35 -0400
commitab96038772ec4f4ccfaf49d621cd20f58742c401 (patch)
tree24d66c027eb850f87e7b23c3021eedadbb0d6a66
parenta6fc81653d6ce649a6bc29675baa112c68a21df0 (diff)
downloadlibffi-ab96038772ec4f4ccfaf49d621cd20f58742c401.tar.gz
Set host triplet for native builds
-rw-r--r--.github/workflows/build.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6c5b333..2694acd 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,11 +22,14 @@ jobs:
fail-fast: false
matrix:
include:
- - MEVAL: "export CC=clang CXX=clang"
+ - HOST: "x86_64-pc-linux-gnu"
+ MEVAL: "export CC=clang CXX=clang"
- HOST: "i386-pc-linux-gnu"
MEVAL: 'export CC="gcc -m32" CXX="g++ -m32"'
- - CONFIGURE_OPTIONS: "--disable-shared"
- - CONFIGURE_OPTIONS: "--enable-shared"
+ - HOST: "x86_64-pc-linux-gnu"
+ CONFIGURE_OPTIONS: "--disable-shared"
+ - HOST: "x86_64-pc-linux-gnu"
+ CONFIGURE_OPTIONS: "--enable-shared"
- HOST: "m68k-linux-gnu"
MEVAL: 'export CC="m68k-linux-gnu-gcc-8 -mcpu=547x" CXX="m68k-linux-gnu-g++-8 -mcpu=547x"'
CONFIGURE_OPTIONS: '--disable-shared'