Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.
7783 Discussions

Have I already installed a compiler?

Lovell__John
Beginner
282 Views

Hi, I just installed Intel Anaconda on Windows 10. Everything working fine. Numpy/Scipy/etc are nice and fast, linking to MKL, etc. Painless.

But (unrelated to python) now I need to create a DLL in order to create an external function that can be called by a 3rd party app (COMSOL).

I can think of lots of ways to make DLL's but they all seem to require a C compiler. Do I already have one installed somewhere as part of conda?

[This is conda version 4.7.11 if that makes a difference]

Thanks for any feedback, John

0 Kudos
2 Replies
Lovell__John
Beginner
282 Views

[Update] Found them. It seems to have installed 2015 MSVC . I went ahead and also downloaded community editions of 2017 and 2019. I'm ready for DLL's now .. what could go wrong....

OK, the answer is _mklinit which seems to have disappeared down a morass of search paths in conda. If I activate intel conda base in powershell and then run python then everything great. But if I fire up Py_Initialize, etc, from MSVC then it screws up. Frustrating. This seems to be a well reported complaint and the answer is "check your paths", which is only mildly helpful.

Regards, John

[Update...] I tried many (all?!!) combinations of Py_SetPythonHome and Py_SetPath and grew increasingly frustrated, but finally found a solution. I had to Py_SetPythonHome(L"C:\\ProgramData\\Anaconda3\\"); before Py_Initialize but I did not have to set path, however, I *did* have to launch VS 2019 from within Anaconda PowerShell command line. Everything else failed... The command to launch was itself a bit tricky, namely:

& "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe"

One step forward...

Viet_H_Intel
Moderator
282 Views

One thing to keep in mind if you are using Intel compiler version 19.0 as it wont support Microsoft Visual Studio 2019.

Reply