diff options
author | 2021-11-09 21:47:36 +0530 | |
---|---|---|
committer | 2021-11-09 21:47:36 +0530 | |
commit | d8e3ca4a881c73bcfee754dbaa472ff7b3fab115 (patch) | |
tree | 196b3fe3059847dacfb7e5edd710b5ed5842de26 | |
parent | 351184991abf926ec52d798a29afafd02486859a (diff) | |
download | bun-d8e3ca4a881c73bcfee754dbaa472ff7b3fab115.tar.gz bun-d8e3ca4a881c73bcfee754dbaa472ff7b3fab115.tar.zst bun-d8e3ca4a881c73bcfee754dbaa472ff7b3fab115.zip |
clang flags: add -mmacosx-version-min flag
fixes #55
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -278,7 +278,8 @@ CLANG_FLAGS = $(INCLUDE_DIRS) \ # This flag is only added to webkit builds on Apple platforms # It has something to do with ICU ifeq ($(OS_NAME), darwin) -CLANG_FLAGS += -DDU_DISABLE_RENAMING=1 +CLANG_FLAGS += -DDU_DISABLE_RENAMING=1 \ + -mmacosx-version-min=10.11 endif @@ -852,4 +853,4 @@ integration-test-dev: USE_EXISTING_PROCESS=true TEST_SERVER_URL=http://localhost:3000 node integration/scripts/browser.js copy-install: - cp src/cli/install.sh ../bun.sh/docs/install.html
\ No newline at end of file + cp src/cli/install.sh ../bun.sh/docs/install.html |