Details
-
Type:
Bug
-
Status: Open
-
Priority:
P3: Somewhat important
-
Resolution: Unresolved
-
Affects Version/s: 5.15.2, 6.2.0
-
Fix Version/s: None
-
Component/s: Build tools: qmake
-
Labels:None
-
Environment:Windows 10
-
Platform/s:
Description
I have a huge project and qmake generates a makefile with :
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
It produces a 11Kb line length which results in an error.
I manually change the makefile with this code and it works:
$(file >$(OBJECTS_DIR)/$(TARGET).rsp, $(OBJECTS))
$(LINK) $(LFLAGS) -o $(TARGET) @$(OBJECTS_DIR)/$(TARGET).rsp $(OBJCOMP) $(LIBS)