M
Magister Ice
Guest
Hello,
I've tried to build windows program using Windows SDK (that was downloaded from Windows 10 SDK - Windows app development) and LLVM/clang++ compiller and faced with issue when <excpt.h> file can't be found.
I've tried to find this file in the system and looks like the file missed in the Windows SDK installation.
Could you please advise how can I resolve the issue?
c:\Program Files\LLVM\bin>clang++ -c "f:\Project\C++\test\test.cpp" -O3 -isystem "c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\um" -isystem "c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\shared" -o "f:\Project\C++\test\test.o"
In file included from f:\Project\C++\test\test.cpp:1:
c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\um\Windows.h:167:10: fatal error: 'excpt.h' file not found
#include <excpt.h>
^~~~~~~~~
1 error generated.
Thanks.
Continue reading...
I've tried to build windows program using Windows SDK (that was downloaded from Windows 10 SDK - Windows app development) and LLVM/clang++ compiller and faced with issue when <excpt.h> file can't be found.
I've tried to find this file in the system and looks like the file missed in the Windows SDK installation.
Could you please advise how can I resolve the issue?
c:\Program Files\LLVM\bin>clang++ -c "f:\Project\C++\test\test.cpp" -O3 -isystem "c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\um" -isystem "c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\shared" -o "f:\Project\C++\test\test.o"
In file included from f:\Project\C++\test\test.cpp:1:
c:\Program Files (x86)\Windows SDK\10\Include\10.0.17763.0\um\Windows.h:167:10: fatal error: 'excpt.h' file not found
#include <excpt.h>
^~~~~~~~~
1 error generated.
Thanks.
Continue reading...