RE: MSVC and C++

2024-04-07 Thread dave
not exist today. Dave From: Dmitry Solomennikov Sent: Sunday, April 7, 2024 12:52 AM To: ecl-devel@common-lisp.net Subject: Re: MSVC and C++ It works well in Windows. Run x64 Native Tools Command Prompt for VS 2022 cd to $ECL/msvc In Makefile enable line ECL_WIN64

Re: MSVC and C++

2024-04-07 Thread Dmitry Solomennikov
It works well in Windows.   Run x64 Native Tools Command Prompt for VS 2022 cd to $ECL/msvc In Makefile enable line ECL_WIN64 = 1, it turns on Windows 64 build. Then run nmake and nmake install. Last command creates Windows ECL distribution.   ECL is compiled successfully on my side.   I did not

Re: MSVC and C++

2024-04-06 Thread Daniel Kochmański
Hey Dave, technically there shouldn't be any issue with the compilation. That said *I think* that cl.exe picks the compiler mode based on the file extension, and as you will see in msvc/c/Makefile, dpp compiles .d files to .c. ECL (as the source code) can run with C++ core and C++ compilers but f

MSVC and C++

2024-04-05 Thread dave
Is it possible to perform C++ builds of ECL on Windows/MSVC? Thanks, Dave