My project have ~200 files (for ~5000 char in filename (and should be more than 8192 char for full filePathName of objects) )
in generated makefile
Code: Select all
@echo $(Objects) > $(ObjectsFileList)
so when invoking the link
Code: Select all
g++ [..] @"c:\path\to\project.txt" [..]
I'm currently able to compile by changing intermediate directory for a shorter name (to be (just) under this limit).
Do you know a way to really fix this problem ?
I think that put one obj filename by line should fix the problem.