mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
532cfb65e0
* CMakeLists: pass `-Dstrip` for release zig builds * pass -target and -mcpu to zig1. works around llvm on freebsd incorrectly detecting "freestanding" instead of "freebsd" for the native OS. * ci.ziglang.org is now responsible for creating aarch64-macos tarballs rather than Azure.
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# Make the `zig version` number consistent.
|
|
# This will affect the cmake commands that follow.
|
|
# This is in its own script because git does not support this command
|
|
# being run concurrently with itself.
|
|
git config core.abbrev 9
|