3rdparty: default CC=gcc

This commit is contained in:
Thomas Bernard 2019-02-27 01:12:26 +01:00
parent b44225833b
commit 0383e52383
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C

5
3rdparty/Makefile vendored
View File

@ -135,6 +135,11 @@ GETURL = $(shell WGET=`which wget` ; if [ "$$?" = "0" ] && [ -x "$$WGET" ] ; \
then echo "$$WGET -nv" ; \ then echo "$$WGET -nv" ; \
else echo 'curl -s -w "%{url_effective} downloaded to %{filename_effective} in %{time_total} seconds\\n" -R -O -L --max-time 120' ; fi ) else echo 'curl -s -w "%{url_effective} downloaded to %{filename_effective} in %{time_total} seconds\\n" -R -O -L --max-time 120' ; fi )
# default to gcc compiler
ifeq (default,$(origin CC))
CC = gcc
endif
BUILD_CC := $(CC) BUILD_CC := $(CC)
STRIP = strip STRIP = strip