mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
b548230620
Collect common options used in artifact build tests in a single mozconfig so they can be set more consistently. Use this to make unsetting toolchain defines universal in these tasks, fixing fallout from bug 1283898 which defined CARGO and RUSTC everywhere, conflicting with --disable-compiler-environment just like CC and CXX were conflicts in some artifact tasks. MozReview-Commit-ID: 4SbxByjClQb --HG-- extra : rebase_source : d8a48fd2192ceb5ece76c827e2243ae784b991cb
13 lines
275 B
Plaintext
13 lines
275 B
Plaintext
# Common options for testing artifact builds in automation.
|
|
|
|
# Enable the artifact build.
|
|
ac_add_options --enable-artifact-builds
|
|
|
|
# Override any toolchain defines we've inherited from other mozconfigs.
|
|
unset CC
|
|
unset CXX
|
|
unset HOST_CC
|
|
unset HOST_CXX
|
|
unset RUSTC
|
|
unset CARGO
|