visual c++ - VS 2008: Fatal error C1083: Cannot open include file: ...: Invalid argument -
visual c++ - VS 2008: Fatal error C1083: Cannot open include file: ...: Invalid argument -
i've seen lots of questions fatal error c1083 "no such file or directory", in case seeing "invalid argument".
i on 32-bit windows trying compile c++ code uses boost. used work, in our setup must've changed, error odd plenty i'm having problem tracking down.
i using cl compiler on command line via cmake/jom. exact error is:
c:\path\to\my\boost\installation\boost/math/constants/constants.hpp(12): fatal error c1083: cannot open include file: 'boost/math/tools/precision.hpp': invalid argument
constants.hpp looks fine, , unsurprisingly has next line 12:
#include <boost/math/tools/precision.hpp>
the invocation of cl
contains -ic:\path\to\boost\include
, , late in compile of big project includes other boost headers. problem seems come , go, , lastly time saw it, @ include of afxwin.h, think. it's "invalid argument".
thanks in advance help, 1 driving crazy.
visual-c++ invalid-argument
Comments
Post a Comment