You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This doesn't match clang-cl's expectations because it's looking specifically for Include and Lib, which matches Windows SDK installation from my Windows system. A quick ln -s include Include; ln -s lib Lib solves my issue but I'm wondering: why is this different from my Windows VS setup? Shouldn't directories already be named Include and Lib, possibly with lowercase symlinks pointing to them if anything depends on that, so this extra step isn't needed?
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to use xwin to cross-compile a C++ project using
clang-cl
with/winsysroot
. I'm preparing the sysroot as follows:Which works almost perfectly, but…
$ ls /tmp/winsysroot/Windows\ Kits/10 include lib
This doesn't match
clang-cl
's expectations because it's looking specifically forInclude
andLib
, which matches Windows SDK installation from my Windows system. A quickln -s include Include; ln -s lib Lib
solves my issue but I'm wondering: why is this different from my Windows VS setup? Shouldn't directories already be namedInclude
andLib
, possibly with lowercase symlinks pointing to them if anything depends on that, so this extra step isn't needed?The text was updated successfully, but these errors were encountered: