File tree 1 file changed +13
-0
lines changed 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,19 @@ cargo_do_compile() {
113
113
bbnote "cargo --version" `cargo --version `
114
114
bbnote cargo build ${CARGO_BUILD_FLAGS}
115
115
116
+ # __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS="nightly" is to allow
117
+ # using nighly features on stable releases, i.e features that are not
118
+ # yet considered stable.
119
+ #
120
+ # CARGO_UNSTABLE_TARGET_APPLIES_TO_HOST="true" enables the nightly
121
+ # configuration option target-applies-to-host value to be set
122
+ #
123
+ # CARGO_TARGET_APPLIES_TO_HOST="false" is actually setting the value
124
+ # for this feature, which we disable, to make sure builds where target
125
+ # arch == host arch work correctly
126
+ #
127
+ # CARGO_UNSTABLE_HOST_CONFIG="true" enables the configuration option
128
+ # CARGO_HOST_LINKER value to be set
116
129
export __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS = "nightly"
117
130
export CARGO_UNSTABLE_TARGET_APPLIES_TO_HOST = "true"
118
131
export CARGO_TARGET_APPLIES_TO_HOST = "false"
You can’t perform that action at this time.
0 commit comments