This fix is based on a problem with cxx_compiler and cxx_linker macros on Windows. There was an issue with compiler detection in paths containing "icc". In such case, Makefile.rules thought it was provided with icc compiler. To solve that, utilities detection has been rewritten in Python. The last element of compiler's path is separated, taking into account the platform path delimiter, and compiler type is extracted, with regard of possible cross-toolchain prefix. --------- Co-authored-by: Pavel Labath <pavel@labath.sk>
9 lines
130 B
Makefile
9 lines
130 B
Makefile
CXX_SOURCES := calling.cpp
|
|
|
|
ifeq ($(CC_TYPE), icc)
|
|
CXXFLAGS_EXTRAS := -debug inline-debug-info
|
|
endif
|
|
|
|
|
|
include Makefile.rules
|