Skip to content

Changed nmake to build against MSVCRT (/MD, /MDd) #158

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

Closed
wants to merge 1 commit into from

Conversation

gh-andre
Copy link
Contributor

@gh-andre gh-andre commented Feb 9, 2025

  • When the runtime type option is omitted, VC++ builds object files with a LIBCMT directive, which is a thread-safe statically linked runtime library.
  • This change adds explicit release and debug dynamic CRT options into build configurations.

* When the runtime type option is omitted, VC++ builds object
  files with a `LIBCMT` directive, which is a thread-safe statically
  linked runtime library.
* This change adds explicit release and debug dynamic CRT
  options into build configurations.

Signed-off-by: gh-andre <[email protected]>
@gh-andre
Copy link
Contributor Author

gh-andre commented Feb 9, 2025

Just a quick note here - it probably makes sense to mention this change in release notes, as it may affect those who customized their projects to either patch the source to use the dynamic CRT, like I did for mine, or to structure their projects around a static CRT, which means that they will not share memory allocation, global initialization, like threading/locking, etc., with those same resources in isa-l_crypto.

@pablodelara
Copy link
Contributor

PR merged, thanks!

@pablodelara pablodelara closed this Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants