Autoconf for Visual C ++

I want to create XZ Utils with MSVC ++, but xz utils uses Gnu Autoconf Script. Is there a way to import the entire autoconfed project into MSVC ++ and then build it? If not, is there a way to run the Gnu Autoconf script for MSVC ++, then just grab all the source files as well as config.h and then build it?

+3
source share
2 answers

As far as I know, really. You can try installing MSYS and see what the support cl.exein the configuration script looks like :

./configure CC=c:/path/to/cl.exe CXX=c:/path/to/cl.exe

, , , . , xz-utils C, , ? MinGW .

+1

FYI XZutils C99 MSVC . MINGW lib dll.

+2

Source: https://habr.com/ru/post/1765508/


All Articles