You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which suggests I successfully chose an alternative compiler.
$ egcc --version
egcc (GCC) 4.9.4
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ eg++ --version
eg++ (GCC) 4.9.4
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ gmake
...
CMake Error at cmake/modules/CheckCompilerVersion.cmake:12 (message):
Host GCC version must be at least 4.7!
So I think it has incorrectly used gcc instead of egcc:
$ gcc --version
gcc (GCC) 4.2.1 20070719
A workaround is to make symlinks to egcc and eg++ and put the dir in the path first.
System is OpenBSD. Today's rust master.
Thanks.
The text was updated successfully, but these errors were encountered:
pnkfelix
added
the
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
label
Mar 6, 2017
Hi,
CC @semarie
I notice that the rust build doesn't pass down the gcc/g++ binary chosen at configure time down to the later stages of the build.
Which suggests I successfully chose an alternative compiler.
So I think it has incorrectly used
gcc
instead ofegcc
:A workaround is to make symlinks to
egcc
andeg++
and put the dir in the path first.System is OpenBSD. Today's rust master.
Thanks.
The text was updated successfully, but these errors were encountered: