diff options
author | shinyquagsire23 <mtinc2@gmail.com> | 2021-11-05 19:58:55 -0700 |
---|---|---|
committer | shinyquagsire23 <mtinc2@gmail.com> | 2021-11-05 19:58:55 -0700 |
commit | ba7202457fec51d31da4d23a1840813952f30f31 (patch) | |
tree | 95cd38dba1187d007a51dca7f455d7b6541d5110 /tools/mwasmarm_patcher | |
parent | 1b75688d9a3cd9828f556e7c68bc65bb0268a68f (diff) |
Update build scripts for MacOS Monterey; Use pkg-config on all platforms; MacOS no longer needs static libc++fs; Use gsed on MacOS
Diffstat (limited to 'tools/mwasmarm_patcher')
-rw-r--r-- | tools/mwasmarm_patcher/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mwasmarm_patcher/Makefile b/tools/mwasmarm_patcher/Makefile index 26df548c..bff3a677 100644 --- a/tools/mwasmarm_patcher/Makefile +++ b/tools/mwasmarm_patcher/Makefile @@ -2,7 +2,7 @@ UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
-CC := gcc-5
+CC := clang
else
CC := gcc
endif
|