mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-03 02:52:58 +00:00
a2f1e5d8c3
* Adds toolchain for freebsd. * Address buildifier lint warnings. * Use /usr/bin/env bash * Leave the Linux-specific shebang alone. * Adds note about Bazel CI issue requesting for FreeBSD support and experimental status. * Fix typo. * Clean up trailing whitespace. * Updates bazel-skylib version for tests to pass on FreeBSD. * Update foreign_cc/repositories.bzl Co-authored-by: UebelAndre <github@uebelandre.com>
12 lines
148 B
Bash
Executable file
12 lines
148 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
if [[ $(uname) == *"NT"* ]]; then
|
|
# If Windows
|
|
exec clang-cl "$@"
|
|
else
|
|
exec "$CXX" "$@"
|
|
fi
|