Skip to content

Commit

Permalink
add cxx files to windows command line build for DLLs
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianGladman committed Nov 10, 2012
1 parent 91b78fa commit c8a4a38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions win/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ for %%X in ( ..\..\cxx\*.cc) do (
cd ..

if %LIBTYPE% == dll (
link /DLL /NODEFAULTLIB:LIBCMT.lib /nologo scanf\*.obj printf\*.obj mpz\*.obj fft\*.obj mpq\*.obj mpf\*.obj mpn\*.obj *.obj /out:mpir.%LIBTYPE%
link /DLL /NODEFAULTLIB:LIBCMT.lib /nologo scanf\*.obj printf\*.obj mpz\*.obj fft\*.obj mpq\*.obj mpf\*.obj mpn\*.obj cxx\*.obj *.obj /out:mpir.%LIBTYPE%
if errorlevel 1 goto :err
link /DLL /NODEFAULTLIB:LIBCMT.lib /nologo scanf\*.obj printf\*.obj mpz\*.obj fft\*.obj mpq\*.obj mpf\*.obj mpn\*.obj *.obj /out:mpirxx.%LIBTYPE%
link /DLL /NODEFAULTLIB:LIBCMT.lib /nologo scanf\*.obj printf\*.obj mpz\*.obj fft\*.obj mpq\*.obj mpf\*.obj mpn\*.obj cxx\*.obj *.obj /out:mpirxx.%LIBTYPE%
if errorlevel 1 goto :err
)
if %LIBTYPE% == lib (
Expand Down

0 comments on commit c8a4a38

Please sign in to comment.