File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pycheribuild/projects/cross Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1527,8 +1527,8 @@ def add_cross_build_options(self) -> None:
1527
1527
if self .use_bootstrapped_toolchain :
1528
1528
assert "XCC" not in self .make_args .env_vars
1529
1529
# We have to provide the default X* values so that Makefile.inc1 does not disable MK_CLANG_BOOTSTRAP and
1530
- # doesn't try to cross-compile using the host compilers
1531
- self .make_args .set_env (XCC = "cc" , XCXX = "c++" , XCPP = "cpp" )
1530
+ # doesn't try to use the host toolchain for cross-building
1531
+ self .make_args .set_env (XCC = "cc" , XCXX = "c++" , XCPP = "cpp" , XSTRIPBIN = "strip" )
1532
1532
# won't work on a case-insensitive file system and is also really slow (and missing tools on linux)
1533
1533
self .make_args .set_with_options (MAN = False )
1534
1534
# links from /usr/bin/mail to /usr/bin/Mail won't work on case-insensitve fs
You can’t perform that action at this time.
0 commit comments