mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
6 lines
166 B
Bash
Executable file
6 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
|
|
if [ "${OS}" == "osx" ] && [ "${MODEL}" == "64" ]; then
|
|
echo "void main(){}" | "${DMD}" -o- -v - | grep predefs | grep -q "D_ObjectiveC"
|
|
fi
|