File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ ifeq ($(shell uname),Linux)
2323else
2424 mkdir -p $@ && cd $@ && \
2525 curl -L $(SWIFT_LINUX_TOOLCHAIN_DOWNLOAD_URL) | tar xz --strip-components 1
26- ./utils/remove-swift-extra-files.sh
26+ ./utils/remove-swift-extra-files.sh ./prebuilt/linux/swift
2727endif
2828prebuilt/libatomic.so.1 :
2929 ./utils/download-libatomic.sh $(LIBATOMIC_DOWNLOAD_URL )
Original file line number Diff line number Diff line change 11#! /bin/sh
22source=" $( cd " $( dirname $0 ) /.." && pwd) "
3- basepath=" $source /prebuilt/linux/swift/usr "
3+ basepath=" $1 "
44filestoremove=" bin/sil-*
55bin/lldb*
66bin/*lld*
@@ -11,6 +11,7 @@ bin/clang-10
1111bin/clang-cl
1212bin/sourcekitd-*
1313bin/swift-build
14+ bin/swift-package
1415bin/swift-run
1516bin/swift-test
1617bin/swift-api-digester
@@ -27,9 +28,17 @@ bin/swift-symbolgraph-extract
2728bin/swift-*-test
2829bin/llvm*
2930bin/llc
31+ bin/objdump
32+ bin/strip
33+ bin/objcopy
34+ bin/nm
35+ bin/size
3036lib/libsourcekitdInProc.so
3137lib/swift_static/linux/*
32- lib/swift"
38+ lib/swift/clang/lib
39+ lib/swift/pm
40+ lib/swift/FrameworkABIBaseline
41+ lib/swift/linux"
3342for i in $filestoremove
3443do
3544 echo $basepath /$i
You can’t perform that action at this time.
0 commit comments