Skip to content
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

unable to find entry point named round in jitlib.dll / err 127 #5

Open
Strophe27 opened this issue Nov 20, 2018 · 2 comments
Open

unable to find entry point named round in jitlib.dll / err 127 #5

Strophe27 opened this issue Nov 20, 2018 · 2 comments

Comments

@Strophe27
Copy link

Strophe27 commented Nov 20, 2018

Hello, thanks for this great external ! works like a charm on mac.
But on Win7 Max7 I have this issue...
I tried to find newest/older jitlib.dll, the last C++ redistribuable , everytime error 127
Same error on max 6.1.

I found that on Cycling74 forum, I hope it could help (talk about "round")...

For future reference, here are a few important things to check for developers working in C++, particularly if you're using the C++(11/14) STL.

  1. Be sure to define the preprocessor macro MAXAPI_USE_MSCRT before including "ext.h" (if you're lazy or superstitious, just add it to the Preprocessor section of the project properties window). This will ensure that Max doesn't try (and fail) to link to the backward-compatible, but essentially outdated "maxcrt.lib" (which doesn't provide a lot of C++ features).
  2. If you don't want the users of your externals to require Microsoft's C++ Redistributable Package for the compiler you're using, compile your objects statically with the \MT flag. Yes, your objects will be unnecessarily larger, but what's a few KB compared to failure to load due to missing dependencies?
  3. If you are including , make sure that your function calls to acosh(), asinh(), atanh(), expm1(), exp2(), log2(), round() and trunc() are properly namespaced with std:: .
@siteswapjuggler
Copy link
Owner

I'll check this as soon as possible, I used them recently on Win 10 and Win 8 computers without any problems. The time for me to find a Win 7 computer and should be able to solve this.

@Strophe27
Copy link
Author

Thx a lot, btw I have to upgrade to 10 but I don't have that time in a middle of this project... ;)

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

No branches or pull requests

2 participants