File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 14
14
15
15
import (" //build_overrides/build.gni" )
16
16
import (" //build_overrides/pigweed.gni" )
17
+ import (" //build_overrides/pigweed_environment.gni" )
17
18
import (" ${ build_root } /chip/java/config.gni" )
18
19
import (" ${ build_root } /config/compiler/compiler.gni" )
19
20
import (" ${ build_root } /config/sysroot.gni" )
@@ -348,7 +349,14 @@ config("cosmetic_default") {
348
349
}
349
350
350
351
config (" runtime_default" ) {
351
- if (is_clang ) { # Using Pigweed clang instead of Darwin host clang
352
+ if (is_clang &&
353
+ current_os == " mac" ) { # Using Pigweed clang instead of Darwin host clang
354
+ # Without pw_env_setup_CIPD_PIGWEED defined the hostclang:no_system_libcpp
355
+ # config silently uses the system libc++, usually resulting in linker errors.
356
+ assert (
357
+ defined (pw_env_setup_CIPD_PIGWEED ),
358
+ " //build_overrides/pigweed_environment.gni must define pw_env_setup_CIPD_PIGWEED when using pigweed clang" )
359
+
352
360
configs = [
353
361
" $dir_pw_toolchain /host_clang:no_system_libcpp" ,
354
362
" $dir_pw_toolchain /host_clang:xcode_sysroot" ,
You can’t perform that action at this time.
0 commit comments