Hello
I'm having issues with building a project in CCS6 and I think I've isolated it to the path variable acting unusually. I'm running windows 10 x64 (have it running fine and building properly on two other PCs so I don't think it's a windows 10 issue) and building the vanilla CC3200 FreeRTOS demo but whenever I try to build it on this machine in particular, I'm having issues because of issues with threads dying unexpectedly.
This is the output I get in the console:
0 [main] sh 14184 c:\progra~1\git\usr\bin\sh.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
419 [main] sh 14184 cygwin_exception::open_stackdumpfile: Dumping stack trace to sh.exe.stackdump
0 [main] sh 13224 fork: child -1 - forked process 14184 died unexpectedly, retry 0, exit code 0x100, errno 11
C:/Users/spud/AppData/Local/Temp/make12904-1.sh: fork: retry: No child processes
1003734 [main] sh 11524 c:\progra~1\git\usr\bin\sh.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
1003981 [main] sh 11524 cygwin_exception::open_stackdumpfile: Dumping stack trace to sh.exe.stackdump
1080783 [main] sh 13224 fork: child -1 - forked process 11524 died unexpectedly, retry 0, exit code 0x100, errno 11
C:/Users/spud/AppData/Local/Temp/make12904-1.sh: fork: retry: No child processes
3085088 [main] sh 5900 c:\progra~1\git\usr\bin\sh.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
3085474 [main] sh 5900 cygwin_exception::open_stackdumpfile: Dumping stack trace to sh.exe.stackdump
3162110 [main] sh 13224 fork: child -1 - forked process 5900 died unexpectedly, retry 0, exit code 0x100, errno 11
C:/Users/spud/AppData/Local/Temp/make12904-1.sh: fork: retry: No child processes
7164971 [main] sh 6716 c:\progra~1\git\usr\bin\sh.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
7165213 [main] sh 6716 cygwin_exception::open_stackdumpfile: Dumping stack trace to sh.exe.stackdump
7246170 [main] sh 13224 fork: child -1 - forked process 6716 died unexpectedly, retry 0, exit code 0x100, errno 11
C:/Users/spud/AppData/Local/Temp/make12904-1.sh: fork: retry: No child processes
15248877 [main] sh 12680 c:\progra~1\git\usr\bin\sh.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
15249265 [main] sh 12680 cygwin_exception::open_stackdumpfile: Dumping stack trace to sh.exe.stackdump
15332575 [main] sh 13224 fork: child -1 - forked process 12680 died unexpectedly, retry 0, exit code 0x100, errno 11
C:/Users/spud/AppData/Local/Temp/make12904-1.sh: fork: Resource temporarily unavailable
gmake.exe[1]: *** [library] Error 254
>> ERROR: mklib: gmake error during rtsv7M4_T_le_eabi.lib build
warning #10207-D: automatic RTS selection: resolving index library "libc.a" to "rtsv7M4_T_le_eabi.lib", but "rtsv7M4_T_le_eabi.lib" was not found
warning #10062-D: entry-point symbol "_c_int00" undefined
If I'm reading that correctly, it's trying to use the copy of sh.exe in my git folder (which is loaded into my path variable in windows) that isn't the version that code composer should be calling (in c:\ti\ccsv6\...) - is there a way to force it to use the ones located in c:\ti\ccsv6?
Thanks
Chris