polish the building process of the perl interface
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@
|
||||
@echo off
|
||||
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
|
@ -1,10 +0,0 @@
|
||||
@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
|
@ -12,15 +12,22 @@ perl.def:
|
||||
echo xchat_plugin_get_info >> perl.def
|
||||
|
||||
perl.obj: perl.c
|
||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH) /I.. /DPERL_DLL=\"$(PERL512LIB).dll\"
|
||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH)\perl\lib\CORE /I.. /DPERL_DLL=\"$(PERL512LIB).dll\"
|
||||
|
||||
$(PERL512LIB).lib: perl512.def
|
||||
!ifdef X64
|
||||
lib /machine:x64 /def:perl512.def
|
||||
!else
|
||||
lib /machine:x86 /def:perl512.def
|
||||
!endif
|
||||
|
||||
perl.c: xchat.pm.h
|
||||
|
||||
xchat.pm.h: lib/Xchat.pm lib/IRC.pm
|
||||
perl.exe generate_header
|
||||
|
||||
$(TARGET): perl.obj perl.def
|
||||
$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /libpath:$(PERL512PATH) /delayload:$(PERL512LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def
|
||||
$(TARGET): perl.obj perl.def $(PERL512LIB).lib
|
||||
$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /delayload:$(PERL512LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def
|
||||
|
||||
clean:
|
||||
@del $(TARGET)
|
||||
|
@ -12,7 +12,7 @@ perl.def:
|
||||
echo xchat_plugin_get_info >> perl.def
|
||||
|
||||
perl.obj: perl.c
|
||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL514PATH) /I.. /DPERL_DLL=\"$(PERL514LIB).dll\"
|
||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL514PATH)\lib\CORE /I.. /DPERL_DLL=\"$(PERL514LIB).dll\"
|
||||
|
||||
perl.c: xchat.pm.h
|
||||
|
||||
|
Reference in New Issue
Block a user