search for: nasmopt

Displaying 8 results from an estimated 8 matches for "nasmopt".

Did you mean: has_opt
2013 Apr 19
2
make issue with syslinux-5.01
...o ldlinux.o -MP -MD .ldlinux.o.d ldlinux.asm (null):0: fatal: command line optimization level must be 'v', 0..3 or <nn> make[1]: *** [ldlinux.o] Error 1 make[1]: Leaving directory `/tmp/syslinux-5.01/core' make: *** [all] Error 2 What is recommended in this case? Should I modify NASMOPT = -Ox to -O3? Thanks!
2017 Apr 05
0
[PATCH 1/2] memdisk: Force ld output format to 32-bits
...enoit.allard at greenbone.net> --- memdisk/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memdisk/Makefile b/memdisk/Makefile index 42e56e0..ccd5738 100644 --- a/memdisk/Makefile +++ b/memdisk/Makefile @@ -78,7 +78,7 @@ memdisk16.o: memdisk16.asm $(NASM) -f bin $(NASMOPT) $(NFLAGS) $(NINCLUDE) -o $@ -l $*.lst $< memdisk_%.o: memdisk_%.bin - $(LD) -r -b binary -o $@ $< + $(LD) --oformat elf32-i386 -r -b binary -o $@ $< memdisk16.elf: $(OBJS16) $(LD) -Ttext 0 -o $@ $^ -- 2.1.4
2017 Jun 30
0
[PATCH v2 1/4] memdisk: Force ld output format to 32-bits
...enoit.allard at greenbone.net> --- memdisk/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memdisk/Makefile b/memdisk/Makefile index 42e56e0..ccd5738 100644 --- a/memdisk/Makefile +++ b/memdisk/Makefile @@ -78,7 +78,7 @@ memdisk16.o: memdisk16.asm $(NASM) -f bin $(NASMOPT) $(NFLAGS) $(NINCLUDE) -o $@ -l $*.lst $< memdisk_%.o: memdisk_%.bin - $(LD) -r -b binary -o $@ $< + $(LD) --oformat elf32-i386 -r -b binary -o $@ $< memdisk16.elf: $(OBJS16) $(LD) -Ttext 0 -o $@ $^ -- 2.1.4
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...ebug_ok = false; - _rv = rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); - + rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); if (rv < 0) return; diff --git a/core/Makefile b/core/Makefile index 3147566..a01d83a 100644 --- a/core/Makefile +++ b/core/Makefile @@ -62,7 +62,7 @@ NASMOPT += $(NASMDEBUG) PREPCORE = ../lzo/prepcore -CFLAGS += -DDEBUG=1 -D__SYSLINUX_CORE__ +CFLAGS += -D__SYSLINUX_CORE__ # The DATE is set on the make command line when building binaries for # official release. Otherwise, substitute a hex string that is pretty much
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together, this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream. Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine. I am using the
2007 Nov 15
3
3.53-pre5 released - release candidate
...): bootsect.inc: make sure the $PnP header can fit inside the segment memdump: remove debugging code never meant for release elf.c: better error message when memory is unavailable Next version is 3.53 Update the memory layout specification Makefiles: create NASMOPT variable Set TR and LDTR when entering protected mode Mark TSS unbusy before protected mode entry Add .gitignore file so "git status" makes sense Fix [BI]ESUBDIRS for make installer/tidy/clean/spotless DHCP bootfile option is 67, not 64. mkdiskima...
2017 Apr 05
5
[PATCH 0/2] Cross-compilation patches
Hi there, I've had issue with the integration of syslinux into the buildroot project [0]. After some research, it turned out that we were wrongly using the host toolchain instead of the target toolchain to build syslinux. This gave us bigger issues (for instance) when trying to link syslinux with gnu-efi, that was built using the target toolchain. The first one forces ld to output i386
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address