Details
-
Suggestion
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
None
-
None
-
Jom 1_1_3
Description
Using the CONFIG+=silent option causes the CC, CXX and LINKER to be replaced by an echo followed by the invocation of that program. The first two use "$<" which currently isn't supported by Jom. Is it possible to add support for this automatic variable?
The generated Makefile contains
CC = @echo compiling $< && gcc
CXX = @echo compiling $< && g++
Which results in a "&& was unexpected at this time.".
ps: this is using Jom as mingw-make replacement (cf. QTCREATORBUG-4409)