mirror of
https://github.com/open-simh/simh.git
synced 2026-01-14 15:46:31 +00:00
MAKEFILE: Fix gcc availability test for more/most platforms
This commit is contained in:
parent
1458712547
commit
a01917e88c
2
makefile
2
makefile
@ -77,7 +77,7 @@ else
|
||||
endif
|
||||
ifeq ($(WIN32),) #*nix Environments (&& cygwin)
|
||||
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 *** You may need to install gcc to build working simulators.)
|
||||
GCC = cc
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user