Skip to content

Commit 175af49

Browse files
committed
Random backup
1 parent f309228 commit 175af49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/alpine.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: FALSE
1313
matrix:
14-
target: [
14+
target: [ # empty MARCH is always sufficient (just by chance)
1515
'x86_64', 'x86', 'aarch64', 'armhf', 'ppc64le', 'armv7', 'riscv64', 'loongarch64', 's390x'
1616
]
1717
compiler:
@@ -103,9 +103,9 @@ jobs:
103103
sudo chroot /srv/alpine /bin/su - runner <<'END'
104104
set -x
105105
echo 'int main() {}' >main.cc
106-
${{matrix.compiler.gxx}} -pipe -w -pthread -std=c++17 -fPIC -Wno-psabi -O3 -fmath-errno \
106+
${{matrix.compiler.gxx}} -pipe -w -pthread -std=c++17 -fPIC -fno-math-errno -Wno-psabi -O3 \
107107
-fno-stack-protector -fcf-protection=none -fno-stack-clash-protection -U_FORTIFY_SOURCE \
108-
-include prelude.cc main.cc -m32 -mfpmath=387
108+
-include prelude.cc main.cc
109109
readelf -h a.out
110110
#make -j4 run GCC='${{matrix.compiler.gcc}}' GXX='${{matrix.compiler.gxx}}' MARCH=
111111
END

0 commit comments

Comments
 (0)