mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-24 21:01:59 +00:00
add triple prefixed gcc, g++, nm script wrappers
This commit is contained in:
parent
2cc24c6db8
commit
3eb7a57ac9
6 changed files with 12 additions and 0 deletions
2
deps/system/bin/aarch64-apple-darwin-g++
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-g++
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
g++ -arch arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-gcc
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-gcc
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
gcc -arch arm64 $*
|
2
deps/system/bin/aarch64-apple-darwin-nm
vendored
Executable file
2
deps/system/bin/aarch64-apple-darwin-nm
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
nm -arch arm64 $*
|
2
deps/system/bin/x86_64-apple-darwin-g++
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-g++
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
g++ -arch x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-gcc
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-gcc
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
gcc -arch x86_64 $*
|
2
deps/system/bin/x86_64-apple-darwin-nm
vendored
Executable file
2
deps/system/bin/x86_64-apple-darwin-nm
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
nm -arch x86_64 $*
|
Loading…
Reference in a new issue