c++ - What's the cause of a D8049 error in visual studio? -
i'm creating project openframeworks (the full source here: https://github.com/morphogencc/ofxasio/tree/master/example-udpreceiver), , empty project seems compile fine.
i added asio library, , few header classes, , project seems give me following error:
1>------ build started: project: example-udpreceiver, configuration: debug x64 ------ 1> main.cpp 1>cl : command line error d8049: cannot execute 'c:\program files (x86)\microsoft visual studio 14.0\vc\bin\x86_amd64\c1xx.dll': command line long fit in debug record 1>cl : command line error d8040: error creating or communicating child process
i couldn't find examples of error d8049 on stackoverflow or on microsoft's pages, , google turned painfully few results. remotely useful 1 github issue:
https://github.com/deplinenoise/tundra/issues/270
but i'm still not sure what's causing problem. familiar error, , can recommend method troubleshooting what's causing it?
thanks in advance!
this bit of weird sounding error, internally generated data. however, have control on that. taking error message @ face value, have many/lots of defined symbols passed in on command line (or the ones have have lengthy definitions), or may have lengthy file paths.
if under project properties, 1 of selections under c++ section "command line", show gets passed compiler. when view can see have many or lengthy parameters, , make changes shorten them.
too many defines? put them in header (possibly stdafx.h) , include them way.
long file paths? shorten paths, put files somewhere else, or set file system aliases real directories use shorter paths.
Comments
Post a Comment