diff options
Diffstat (limited to '')
-rwxr-xr-x | taskcluster/scripts/misc/osx-cross-linker | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/taskcluster/scripts/misc/osx-cross-linker b/taskcluster/scripts/misc/osx-cross-linker new file mode 100755 index 0000000000..f0827b01fa --- /dev/null +++ b/taskcluster/scripts/misc/osx-cross-linker @@ -0,0 +1,7 @@ +exec $MOZ_FETCHES_DIR/clang/bin/clang -v \ + -fuse-ld=$MOZ_FETCHES_DIR/cctools/bin/x86_64-apple-darwin-ld \ + -mmacosx-version-min=10.12 \ + -target $TARGET \ + -B $MOZ_FETCHES_DIR/cctools/bin \ + -isysroot $MOZ_FETCHES_DIR/MacOSX10.12.sdk \ + "$@" |