mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 23:55:58 -04:00
12 lines
251 B
Bash
Executable File
12 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# hack: remove iOS CFLAGS
|
|
if [ "$(uname -m)" == "x86_64" ]; then
|
|
args=${@/arm64/x86_64}
|
|
fi
|
|
args=${args/"-isysroot $thesysroot"/}
|
|
args=${args/"-miphoneos-version-min=12.0"/}
|
|
|
|
$thecxx $args --stdlib=libc++ -isysroot $themacsysroot
|