Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-17 Thread Max Smolens
Hi Randy, The missing character issue is likely due to some stage of your build process hitting a command line length limit on Windows. Similar problems have been described in 3D Slicer builds [1] [2], although in that case the problems were related to (a) many include directories and (b)

Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-17 Thread Bill Hoffman
Can you create a small example that shows the problem? Even a small full example with the code you have below so I can better understand it. -Bill On 10/17/2016 10:59 AM, Randy Turner wrote: Thanks, Andrew, Bill, and Zan! I'm not completely certain that reinstalling Windows is the only or

Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-17 Thread Randy Turner
Thanks, Andrew, Bill, and Zan! I'm not completely certain that reinstalling Windows is the only or even the best solution, but once we all moved our repositories into our root directories I have not found another solution, even temporary. Of our six dev machines, it is a recurring problem on two

Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-14 Thread Zan Lynx
On 10/14/2016 08:04 AM, Randy Turner wrote: > As you can see, the file path is missing a "t" in the first occurrence > of the word "iterator" and so that file definitely does not exist. A > file exists in the location with correct spelling, but somehow that > hardcoded path in that temporary file

Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-14 Thread Bill Hoffman
On 10/14/2016 10:04 AM, Randy Turner wrote: Hello! I've been running into a frustrating issue on and off for the past year. The project will build the source files correctly but when it comes to linking the executables, I always get the same error. The specific file varies, but the failure mode

Re: [CMake] Single Letter Omissions From File Path In Linker

2016-10-14 Thread Andrew Bell
On Fri, Oct 14, 2016 at 9:04 AM, Randy Turner wrote: > Hello! I've been running into a frustrating issue on and off for the past > year. The project will build the source files correctly but when it comes > to linking the executables, I always get the same error. The