Facilitate the creation of cross-compilation config.cross-gcc.mk
In order to create such a variant, you only need to override CC and CXX.
This commit is contained in:
parent
54fd4848ae
commit
11093b9e66
|
@ -23,11 +23,11 @@
|
|||
#------------------------------------------------------------------------------
|
||||
|
||||
CC= gcc
|
||||
CC99= gcc -std=gnu99
|
||||
CC99= $(CC) -std=gnu99
|
||||
CXX= g++
|
||||
CXX11= g++ -std=gnu++11
|
||||
LD= g++
|
||||
CPP= gcc -E
|
||||
CXX11= $(CXX) -std=gnu++11
|
||||
LD= $(CC)
|
||||
CPP= $(CC) -E
|
||||
PYTHON= python
|
||||
AR= ar -rcs
|
||||
RANLIB= ranlib
|
||||
|
|
Loading…
Reference in New Issue