Skip to content

Commit 67beb6b

Browse files
committed
fix(workflow): add CPPFLAGS for musl-gcc configuration in OpenSSL build step
1 parent f89111d commit 67beb6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
wget https://www.openssl.org/source/openssl-3.0.15.tar.gz
9393
tar -xzf openssl-3.0.15.tar.gz
9494
cd openssl-3.0.15
95-
CC=musl-gcc ./Configure linux-aarch64 --prefix=/usr/local/musl --openssldir=/usr/local/musl/ssl no-shared
95+
CC=musl-gcc CPPFLAGS="-I/usr/include" ./Configure linux-aarch64 --prefix=/usr/local/musl --openssldir=/usr/local/musl/ssl no-shared
9696
make -j$(nproc)
9797
sudo make install
9898
cd ..

0 commit comments

Comments
 (0)