diff options
author | Carl Dong <contact@carldong.me> | 2020-02-04 12:52:11 -0500 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2020-06-22 10:14:01 -0400 |
commit | fbcfcf695435c9587e9f9fd2809c4d5350b2558e (patch) | |
tree | d2eab295c61bdbc70c6eb57024666c9356a291bc /depends/packages/native_cctools.mk | |
parent | 3381e4a1892511d4d555853887c89badf4c940a9 (diff) |
native_cctools: Don't use libc++ from pinned clang
Now that we include the macOS SDK libc++ headers in our macOS SDK
tarball, we no longer need this hack to use the libc++ from our pinned
clang.
Diffstat (limited to 'depends/packages/native_cctools.mk')
-rw-r--r-- | depends/packages/native_cctools.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/depends/packages/native_cctools.mk b/depends/packages/native_cctools.mk index 4195230b40..b4957357bd 100644 --- a/depends/packages/native_cctools.mk +++ b/depends/packages/native_cctools.mk @@ -72,7 +72,5 @@ define $(package)_stage_cmds cp -P bin/clang++ $($(package)_staging_prefix_dir)/bin/ &&\ cp lib/libLTO.so $($(package)_staging_prefix_dir)/lib/ && \ cp -rf lib/clang/$($(package)_clang_version)/include/* $($(package)_staging_prefix_dir)/lib/clang/$($(package)_clang_version)/include/ && \ - cp bin/llvm-dsymutil $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil && \ - if `test -d include/c++/`; then cp -rf include/c++/ $($(package)_staging_prefix_dir)/include/; fi && \ - if `test -d lib/c++/`; then cp -rf lib/c++/ $($(package)_staging_prefix_dir)/lib/; fi + cp bin/llvm-dsymutil $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil endef |