From 3eb7a57ac98be9e56cdc9c7341611bcedc6e7a59 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 25 Dec 2020 12:54:58 +0200 Subject: [PATCH] add triple prefixed gcc, g++, nm script wrappers --- deps/system/bin/aarch64-apple-darwin-g++ | 2 ++ deps/system/bin/aarch64-apple-darwin-gcc | 2 ++ deps/system/bin/aarch64-apple-darwin-nm | 2 ++ deps/system/bin/x86_64-apple-darwin-g++ | 2 ++ deps/system/bin/x86_64-apple-darwin-gcc | 2 ++ deps/system/bin/x86_64-apple-darwin-nm | 2 ++ 6 files changed, 12 insertions(+) create mode 100755 deps/system/bin/aarch64-apple-darwin-g++ create mode 100755 deps/system/bin/aarch64-apple-darwin-gcc create mode 100755 deps/system/bin/aarch64-apple-darwin-nm create mode 100755 deps/system/bin/x86_64-apple-darwin-g++ create mode 100755 deps/system/bin/x86_64-apple-darwin-gcc create mode 100755 deps/system/bin/x86_64-apple-darwin-nm diff --git a/deps/system/bin/aarch64-apple-darwin-g++ b/deps/system/bin/aarch64-apple-darwin-g++ new file mode 100755 index 00000000..a1261314 --- /dev/null +++ b/deps/system/bin/aarch64-apple-darwin-g++ @@ -0,0 +1,2 @@ +#!/bin/sh +g++ -arch arm64 $* diff --git a/deps/system/bin/aarch64-apple-darwin-gcc b/deps/system/bin/aarch64-apple-darwin-gcc new file mode 100755 index 00000000..e653f186 --- /dev/null +++ b/deps/system/bin/aarch64-apple-darwin-gcc @@ -0,0 +1,2 @@ +#!/bin/sh +gcc -arch arm64 $* diff --git a/deps/system/bin/aarch64-apple-darwin-nm b/deps/system/bin/aarch64-apple-darwin-nm new file mode 100755 index 00000000..432d2615 --- /dev/null +++ b/deps/system/bin/aarch64-apple-darwin-nm @@ -0,0 +1,2 @@ +#!/bin/sh +nm -arch arm64 $* diff --git a/deps/system/bin/x86_64-apple-darwin-g++ b/deps/system/bin/x86_64-apple-darwin-g++ new file mode 100755 index 00000000..38400544 --- /dev/null +++ b/deps/system/bin/x86_64-apple-darwin-g++ @@ -0,0 +1,2 @@ +#!/bin/sh +g++ -arch x86_64 $* diff --git a/deps/system/bin/x86_64-apple-darwin-gcc b/deps/system/bin/x86_64-apple-darwin-gcc new file mode 100755 index 00000000..4474335b --- /dev/null +++ b/deps/system/bin/x86_64-apple-darwin-gcc @@ -0,0 +1,2 @@ +#!/bin/sh +gcc -arch x86_64 $* diff --git a/deps/system/bin/x86_64-apple-darwin-nm b/deps/system/bin/x86_64-apple-darwin-nm new file mode 100755 index 00000000..e25d300a --- /dev/null +++ b/deps/system/bin/x86_64-apple-darwin-nm @@ -0,0 +1,2 @@ +#!/bin/sh +nm -arch x86_64 $*