diff options
author | Yuichiro NAITO <[email protected]> | 2018-08-21 10:42:30 +0900 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-08-22 06:10:32 -0400 |
commit | 7767d0f28de1accae535d422cd295c46f0815c7d (patch) | |
tree | 88cfa8bf5ea8a5476b191250430e26406efdd552 /make/configure.py | |
parent | 4b7a96048aa0ebef75079423b64549b763208f32 (diff) |
build: Allows to use clang/clang++ compiler on FreeBSD.
LOCALBASE variable is used to indicate where FreeBSD ports are installed.
default is /usr/local.
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index c3eeee34d..3a9d1c257 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1512,7 +1512,7 @@ try: class Tools: ar = ToolProbe( 'AR.exe', 'ar', abort=True ) cp = ToolProbe( 'CP.exe', 'cp', abort=True ) - gcc = ToolProbe( 'GCC.gcc', 'gcc', IfHost( 'gcc-4', '*-*-cygwin*' )) + gcc = ToolProbe( 'GCC.gcc', 'gcc', IfHost( 'clang', '*-*-freebsd*' ), IfHost( 'gcc-4', '*-*-cygwin*' )) if host.match( '*-*-darwin*' ): gmake = ToolProbe( 'GMAKE.exe', 'make', 'gmake', abort=True ) |