I am trying to build a project that uses an older version of the Threaded Building Blocks library that uses cmd //C in a few places in their makefile.
This fails when using w64devkit, it appears to launch cmd and hang waiting for user input rather than running the command that follows. This behavior does not occur when using something like RTools or msys that provide similar environments for Windows.
It seems that cmd /C does work, but I believe that would break these other longstanding environments
As an aside, if I hack around these issues in TBB and try to proceed with the rest of my build, I get linker errors for standard library functions:
undefined reference to `std::istream::seekg(std::fpos<_Mbstatet>)'
I am trying to build a project that uses an older version of the Threaded Building Blocks library that uses
cmd //Cin a few places in their makefile.This fails when using w64devkit, it appears to launch
cmdand hang waiting for user input rather than running the command that follows. This behavior does not occur when using something likeRToolsormsysthat provide similar environments for Windows.It seems that
cmd /Cdoes work, but I believe that would break these other longstanding environmentsAs an aside, if I hack around these issues in TBB and try to proceed with the rest of my build, I get linker errors for standard library functions: