Skip to content

Commit

Permalink
MacOS build action requires -std=c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbradsmith authored May 9, 2024
1 parent f441081 commit 9d4210d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_nsfplay3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,12 @@ jobs:
- name: Make
run: |
export CC=clang
export CXXFLAGS_EXTRA="-target arm64-apple-macos11"
export CXXFLAGS_EXTRA="-target arm64-apple-macos11 -std=c++11"
export LDFLAGS_EXTRA="-target arm64-apple-macos11"
export WXL_DIR=../wxlibArm
export OUTDIR=output/makeArm INTDIR=intermediate/makeArm
make cmd nsfplay
export CXXFLAGS_EXTRA="-target x86_64-apple-macos10.13"
export CXXFLAGS_EXTRA="-target x86_64-apple-macos10.13 -std=c++11"
export LDFLAGS_EXTRA="-target x86_64-apple-macos10.13"
export WXL_DIR=../wxlibIntel
export OUTDIR=output/makeIntel INTDIR=intermediate/makeIntel
Expand Down

0 comments on commit 9d4210d

Please sign in to comment.