summaryrefslogtreecommitdiff
path: root/tools/knarc
diff options
context:
space:
mode:
authorshinyquagsire23 <mtinc2@gmail.com>2021-11-05 19:58:55 -0700
committershinyquagsire23 <mtinc2@gmail.com>2021-11-05 19:58:55 -0700
commitba7202457fec51d31da4d23a1840813952f30f31 (patch)
tree95cd38dba1187d007a51dca7f455d7b6541d5110 /tools/knarc
parent1b75688d9a3cd9828f556e7c68bc65bb0268a68f (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/knarc')
-rw-r--r--tools/knarc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile
index 0e0a0920..24e0de7d 100644
--- a/tools/knarc/Makefile
+++ b/tools/knarc/Makefile
@@ -8,7 +8,7 @@ else
C_SRCS :=
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
-LDFLAGS += -lstdc++ -lc++ -lc /usr/local/opt/llvm@8/lib/libc++fs.a
+LDFLAGS += -lstdc++ -lc++ -lc -D_LIBCPP_NO_EXPERIMENTAL_DEPRECATION_WARNING_FILESYSTEM
else
LDFLAGS += -lstdc++fs
endif