We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031bb87 commit 7557491Copy full SHA for 7557491
.github/workflows/linux.yml
@@ -66,7 +66,7 @@ jobs:
66
elif [ "${{ matrix.arch }}" == "arm" ]; then
67
make CC=arm-linux-gnueabihf-gcc debug
68
elif [ "${{ matrix.arch }}" == "x86" ]; then
69
- make CC=gcc -m32 debug
+ make CC="gcc -m32" debug
70
else
71
compiler=${{ matrix.compiler }}
72
make CC=${compiler,,} debug
@@ -78,7 +78,7 @@ jobs:
78
79
make CC=arm-linux-gnueabihf-gcc
80
81
- make CC=gcc -m32
+ make CC="gcc -m32"
82
83
84
make CC=${compiler,,}
0 commit comments