-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request for comment on NoMSVC #46
Comments
NoMSVC is, as far as I can tell, a left over from the fact that this crate originally only supported building with MSVC. Later platforms such as Linux and iOS were added later, but the code still reports "NotMSVC" if the compiler triplet setup isn't recognized. This should probably be cleaned up to be NotYetSupportedCompiler or something similar. |
It appears on line 1346 in the body of My concern is that I can't compile for Output of
|
I got bogged down in the rewriting of |
@JohnScience yeah.. I took a try at trying to clean that code up in the past but didn't get very far before giving up myself. As for how to compile and link For what it is worth, vcpkg does not seem to offer all triplets working on all hosts. For instance, many Windows libraries are just not possible from Linux afaict (maybe with some wine tooling and using shoehorning in MSFTs tools?), with many of even the mingw builds also just broken. I've hit this a few times where the vcpkg port really wants e.g. Powershell as a dev dependency when targeting Windows, failing on Linux hosts. YMMV. |
Clarification: |
@mcgoo Hi, which kind of error is represented by
NotMVC
and why exactly does it exist? Was it a workaround for a bug or limitation ofvcpkg
? If so, can you link the issue?EDIT: corrected from
NoMSVC
toNotMSVC
The text was updated successfully, but these errors were encountered: