diff options
author | Yuichiro NAITO <[email protected]> | 2018-11-19 11:19:19 +0900 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-11-26 17:59:40 -0500 |
commit | e6081d225f352e15ad6cb8752ae07b648758cb48 (patch) | |
tree | aa95e64c7f9d4f30960be5dec92be7afae693fed | |
parent | 9e71ecc64729fa852e270e7f0b46827897603c74 (diff) |
build: Respect CC environment variable on all platforms.
-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 6f58a78e2..b854ff6fe 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1513,7 +1513,7 @@ try: ar = ToolProbe( 'AR.exe', 'ar', abort=True ) cp = ToolProbe( 'CP.exe', 'cp', abort=True ) gcc_tools = ['GCC.gcc', - IfHost( os.environ.get('CC', None), '*-*-freebsd*' ), + os.environ.get('CC', None), 'gcc', IfHost( 'clang', '*-*-freebsd*' ), IfHost( 'gcc-4', '*-*-cygwin*' )] |