GCC isn't default on all platforms FreeBSD supports, and some users may have defined FAVORITE_COMPILER=gcc via make.conf(5) or Makefile.local.
$ make [...] g++5: error: unrecognized command line option '-stdlib=libc++'
Differential D5897
lang/rust: unbreak build on gcc platforms jbeich on Apr 10 2016, 1:51 AM. Authored by Tags None Referenced Files
Subscribers
Details
GCC isn't default on all platforms FreeBSD supports, and some users may have defined FAVORITE_COMPILER=gcc via make.conf(5) or Makefile.local. $ make [...] g++5: error: unrecognized command line option '-stdlib=libc++' $ make -V CONFIGURE_ARGS CHOSEN_COMPILER_TYPE="" --disable-valgrind --disable-docs --mandir=/usr/local/man --release-channel=stable $ make -V CONFIGURE_ARGS CHOSEN_COMPILER_TYPE=gcc --disable-valgrind --disable-docs --mandir=/usr/local/man --release-channel=stable $ make -V CONFIGURE_ARGS CHOSEN_COMPILER_TYPE=clang --disable-valgrind --disable-docs --enable-clang --mandir=/usr/local/man --release-channel=stable
Diff Detail
Event TimelineComment Actions I am testing an update to rust 1.8.0 at the moment. |