add more triple prefixed tool wrappers

This commit is contained in:
alexey.lysiuk 2020-12-29 11:50:13 +02:00
parent 71809fb07e
commit a847b53b2b
16 changed files with 32 additions and 0 deletions

2
deps/system/bin/aarch64-apple-darwin-ar vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
ar $*

View file

@ -0,0 +1,2 @@
#!/bin/sh
dsymutil --arch=arm64 $*

2
deps/system/bin/aarch64-apple-darwin-lipo vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
lipo $*

2
deps/system/bin/aarch64-apple-darwin-nmedit vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
nmedit -arch arm64 $*

View file

@ -0,0 +1,2 @@
#!/bin/sh
objdump --arch=arm64 $*

2
deps/system/bin/aarch64-apple-darwin-otool vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
otool -arch arm64 $*

2
deps/system/bin/aarch64-apple-darwin-ranlib vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
ranlib $*

2
deps/system/bin/aarch64-apple-darwin-strip vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
strip -arch arm64 $*

2
deps/system/bin/x86_64-apple-darwin-ar vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
ar $*

View file

@ -0,0 +1,2 @@
#!/bin/sh
dsymutil --arch=x86_64 $*

2
deps/system/bin/x86_64-apple-darwin-lipo vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
lipo $*

2
deps/system/bin/x86_64-apple-darwin-nmedit vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
nmedit -arch x86_64 $*

2
deps/system/bin/x86_64-apple-darwin-objdump vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
objdump --arch=x86_64 $*

2
deps/system/bin/x86_64-apple-darwin-otool vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
otool -arch x86_64 $*

2
deps/system/bin/x86_64-apple-darwin-ranlib vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
ranlib $*

2
deps/system/bin/x86_64-apple-darwin-strip vendored Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
strip -arch x86_64 $*