aboutsummaryrefslogtreecommitdiff
path: root/depends/packages
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2020-02-04 12:52:11 -0500
committerCarl Dong <contact@carldong.me>2020-06-22 10:14:01 -0400
commitfbcfcf695435c9587e9f9fd2809c4d5350b2558e (patch)
treed2eab295c61bdbc70c6eb57024666c9356a291bc /depends/packages
parent3381e4a1892511d4d555853887c89badf4c940a9 (diff)
downloadbitcoin-fbcfcf695435c9587e9f9fd2809c4d5350b2558e.tar.xz
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')
-rw-r--r--depends/packages/native_cctools.mk4
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