1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Mk/bsd.gcc.mk: Never use /usr/bin/gcc

USE_GCC=any was introduced to leverage the old version of GCC 4.2
installed as /usr/bin/gcc on some systems. That has increasingly
not been present any longer (not on i386 and amd64 since 12.x and
optionally 11.x, not even on the ppcdevref system according to
linimon@) and hardly anyone actually has been testing ports in
this scenario.

So, finally stop using /usr/bin/gcc (and /usr/bin/gc++ and
/usr/bin/gcpp) even if present.

This makes USE_GCC=any just another way of spelling USE_GCC=yes
before we finally de-orbit it.

Discussed with: mat, linimon, pkubaj
This commit is contained in:
Gerald Pfeifer 2021-05-29 06:55:08 +00:00
parent 579003d8c0
commit 96c17633d9

View File

@ -68,16 +68,6 @@ IGNORE= bad target specification in USE_GCC; only "build" is supported
.if defined(USE_GCC) && !defined(FORCE_BASE_CC_FOR_TESTING)
.if ${USE_GCC} == any && exists(/usr/bin/gcc)
CC:= gcc
CXX:= g++
. if exists(/usr/bin/gcpp)
CPP:= gcpp
. else
CPP:= cpp
. endif
.else # The regular approach, not using the age-old base compiler.
# Handle USE_GCC=yes and USE_GCC=any.
.if ${USE_GCC} == yes || ${USE_GCC} == any
USE_GCC= ${GCC_DEFAULT}+
@ -151,8 +141,6 @@ RUN_DEPENDS+= ${CC}:lang/${_GCC_PORT}
USE_BINUTILS= yes
.endif
.endif # USE_GCC=any
.endif # defined(_USE_GCC) && !defined(FORCE_BASE_CC_FOR_TESTING)