add triple prefixed gcc, g++, nm script wrappers

This commit is contained in:
alexey.lysiuk 2020-12-25 12:54:58 +02:00
parent 2cc24c6db8
commit 3eb7a57ac9
6 changed files with 12 additions and 0 deletions

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

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

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

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

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

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

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

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

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

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

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

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