This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
20 lines
492 B
Batchfile
Executable File
20 lines
492 B
Batchfile
Executable File
perl util\mkfiles.pl >MINFO
|
|
|
|
cmd /c "nasm -f win64 -v" >NUL 2>&1
|
|
if %errorlevel% neq 0 goto ml64
|
|
|
|
perl ms\uplink-x86_64.pl nasm > ms\uptable.asm
|
|
nasm -f win64 -o ms\uptable.obj ms\uptable.asm
|
|
goto proceed
|
|
|
|
:ml64
|
|
perl ms\uplink-x86_64.pl masm > ms\uptable.asm
|
|
ml64 -c -Foms\uptable.obj ms\uptable.asm
|
|
|
|
:proceed
|
|
perl util\mk1mf.pl VC-WIN64A >ms\nt.mak
|
|
perl util\mk1mf.pl dll VC-WIN64A >ms\ntdll.mak
|
|
|
|
perl util\mkdef.pl 32 libeay > ms\libeay32.def
|
|
perl util\mkdef.pl 32 ssleay > ms\ssleay32.def
|