Skip to content

Commit

Permalink
Fix libatrac9 builds for linux/mac
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Nov 17, 2024
1 parent 64839b4 commit 1e4c800
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@ jobs:
if [[ "${{ matrix.os_name }}" == "macos"* ]]; then
sed -i '' -e 's/,--version-script=libatrac9.version//g' Makefile
fi
make CC="$CC"
if [ -z "${CC}" ]; then
make
else
make CC="$CC"
fi
mkdir -p ../include/libatrac9
mkdir -p ../libs
cp bin/libatrac9.a ../libs/
Expand Down

0 comments on commit 1e4c800

Please sign in to comment.