mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-24 21:01:59 +00:00
add more triple prefixed tool wrappers
This commit is contained in:
parent
71809fb07e
commit
a847b53b2b
16 changed files with 32 additions and 0 deletions
2
deps/system/bin/aarch64-apple-darwin-ar
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-ar
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
ar $*
|
2
deps/system/bin/aarch64-apple-darwin-dsymutil
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-dsymutil
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
dsymutil --arch=arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-lipo
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-lipo
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
lipo $*
|
2
deps/system/bin/aarch64-apple-darwin-nmedit
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-nmedit
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
nmedit -arch arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-objdump
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-objdump
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
objdump --arch=arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-otool
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-otool
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
otool -arch arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-ranlib
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-ranlib
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
ranlib $*
|
2
deps/system/bin/aarch64-apple-darwin-strip
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-strip
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
strip -arch arm64 $*
|
2
deps/system/bin/x86_64-apple-darwin-ar
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-ar
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
ar $*
|
2
deps/system/bin/x86_64-apple-darwin-dsymutil
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-dsymutil
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
dsymutil --arch=x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-lipo
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-lipo
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
lipo $*
|
2
deps/system/bin/x86_64-apple-darwin-nmedit
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-nmedit
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
nmedit -arch x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-objdump
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-objdump
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
objdump --arch=x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-otool
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-otool
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
otool -arch x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-ranlib
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-ranlib
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
ranlib $*
|
2
deps/system/bin/x86_64-apple-darwin-strip
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-strip
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
strip -arch x86_64 $*
|
Loading…
Reference in a new issue