2011-07-27 06:16:35 +02:00
|
|
|
@echo off
|
|
|
|
set PATH=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
|
|
|
|
cd c:\mozilla-build\perl-5.12-x86\perl\lib\CORE
|
|
|
|
echo.Overwrite existing def file?
|
|
|
|
pause
|
|
|
|
dumpbin /exports ..\..\bin\perl512.dll > perl512.def
|
|
|
|
echo.Please adjust the resulting file manually, then hit return!
|
|
|
|
pause
|
|
|
|
lib /machine:x86 /def:perl512.def
|
|
|
|
pause
|
2011-07-28 00:05:58 +02:00
|
|
|
set PATH=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64
|
|
|
|
cd c:\mozilla-build\perl-5.12-x64\perl\lib\CORE
|
|
|
|
echo.Overwrite existing def file?
|
|
|
|
pause
|
|
|
|
dumpbin /exports ..\..\bin\perl512.dll > perl512.def
|
|
|
|
echo.Please adjust the resulting file manually, then hit return!
|
|
|
|
pause
|
|
|
|
lib /machine:x64 /def:perl512.def
|
|
|
|
pause
|