Skip to content

Commit a5550f8

Browse files
committed
build: use -stdlib++-isystem with Clang 10
1 parent 51d9d16 commit a5550f8

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

depends/hosts/darwin.mk

+3-8
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,11 @@ $(foreach TOOL,$(cctools_TOOLS),$(eval darwin_$(TOOL) = $$(build_prefix)/bin/$$(
6060
# Explicitly point to our binaries (e.g. cctools) so that they are
6161
# ensured to be found and preferred over other possibilities.
6262
#
63-
# -stdlib=libc++ -nostdinc++ -Xclang -cxx-isystem$(OSX_SDK)/usr/include/c++/v1
63+
# -stdlib=libc++ -stdlib++-isystem$(OSX_SDK)/usr/include/c++/v1
6464
#
6565
# Forces clang to use the libc++ headers from our SDK and completely
6666
# forget about the libc++ headers from the standard directories
6767
#
68-
# TODO: Once we start requiring a clang version that has the
69-
# -stdlib++-isystem<directory> flag first introduced here:
70-
# https://reviews.llvm.org/D64089, we should use that instead. Read the
71-
# differential summary there for more details.
72-
#
7368
# -Xclang -*system<path_a> \
7469
# -Xclang -*system<path_b> \
7570
# -Xclang -*system<path_c> ...
@@ -109,8 +104,8 @@ darwin_CXX=env -u C_INCLUDE_PATH -u CPLUS_INCLUDE_PATH \
109104
$(clangxx_prog) --target=$(host) -mmacosx-version-min=$(OSX_MIN_VERSION) \
110105
-B$(build_prefix)/bin -mlinker-version=$(LD64_VERSION) \
111106
-isysroot$(OSX_SDK) \
112-
-stdlib=libc++ -nostdinc++ \
113-
-Xclang -cxx-isystem$(OSX_SDK)/usr/include/c++/v1 \
107+
-stdlib=libc++ \
108+
-stdlib++-isystem$(OSX_SDK)/usr/include/c++/v1 \
114109
-Xclang -internal-externc-isystem$(clang_resource_dir)/include \
115110
-Xclang -internal-externc-isystem$(OSX_SDK)/usr/include
116111

0 commit comments

Comments
 (0)