MAKEFILE: Fix gcc availability test for more/most platforms
This commit is contained in:
parent
1458712547
commit
a01917e88c
1 changed files with 1 additions and 1 deletions
2
makefile
2
makefile
|
@ -77,7 +77,7 @@ else
|
||||||
endif
|
endif
|
||||||
ifeq ($(WIN32),) #*nix Environments (&& cygwin)
|
ifeq ($(WIN32),) #*nix Environments (&& cygwin)
|
||||||
ifeq ($(GCC),)
|
ifeq ($(GCC),)
|
||||||
ifneq (has-gcc,$(shell if which -s gcc; then echo has-gcc; fi))
|
ifeq (,$(shell which gcc 2>/dev/null))
|
||||||
$(info *** Warning *** Using local cc since gcc isn't available locally.)
|
$(info *** Warning *** Using local cc since gcc isn't available locally.)
|
||||||
$(info *** Warning *** You may need to install gcc to build working simulators.)
|
$(info *** Warning *** You may need to install gcc to build working simulators.)
|
||||||
GCC = cc
|
GCC = cc
|
||||||
|
|
Loading…
Add table
Reference in a new issue