diff --git a/Makefile b/Makefile index 0826fc3..d334eeb 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,9 @@ CC=gcc LD=ld CP=cp STRIP=strip -CFLAGS = -Wall -nostdinc -ffreestanding -DKERNEL_SOS -g -LIBGCC = $(shell $(CC) -print-libgcc-file-name) # To benefit from FP/64bits artihm. -LDFLAGS = --warn-common -nostdlib +CFLAGS = -Wall -nostdinc -ffreestanding -DKERNEL_SOS -g -m32 -fno-asynchronous-unwind-tables +LIBGCC = $(shell $(CC) -print-libgcc-file-name -m32) # To benefit from FP/64bits artihm. +LDFLAGS = --warn-common -nostdlib -m elf_i386 OBJECTS = bootstrap/multiboot.o \ hwcore/idt.o hwcore/gdt.o \ hwcore/swintr.o hwcore/swintr_wrappers.o \ diff --git a/support/build_image.sh b/support/build_image.sh index 85cf1bb..152906c 100755 --- a/support/build_image.sh +++ b/support/build_image.sh @@ -49,7 +49,7 @@ print_usage () { exit 1 } -grub_dirs_common="/usr/local/share/grub/i386-freebsd /usr/local/share/grub/i386-pc /usr/share/grub/i386-pc /usr/lib/grub/i386-pc /usr/local/grub /usr/share/grub/i386-redhat /usr/local/src/grub-0.5.94 $HOME/share/grub/i386-pc/" +grub_dirs_common="/usr/local/share/grub/i386-freebsd /usr/local/share/grub/i386-pc /usr/share/grub/i386-pc /usr/lib/grub/i386-pc /usr/local/grub /usr/share/grub/i386-redhat /usr/local/src/grub-0.5.94 $HOME/share/grub/i386-pc/ /usr/lib/grub/x86_64-unknown" sbin_grub_path="/usr/local/sbin /usr/sbin /sbin $HOME/sbin" PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin @@ -66,7 +66,7 @@ IMG_FNAME=fd.img ## Format disk image ## init_image () { - echo "Initialize disk image $IMG_FILE..." + echo "Initialize disk image $IMG_FNAME..." if [ ! -f $IMG_FNAME ] ; then dd if=/dev/zero of=$IMG_FNAME bs=18k count=80 1>/dev/null 2>&1 fi diff --git a/userland/Makefile b/userland/Makefile index d75f87d..24e2a1d 100644 --- a/userland/Makefile +++ b/userland/Makefile @@ -20,9 +20,9 @@ AR=ar CP=cp STRIP=strip OBJCOPY=objcopy -CFLAGS = -Wall -nostdinc -ffreestanding -I. -I.. -O -LIBGCC = $(shell $(CC) -print-libgcc-file-name) # To benefit from FP/64bits artihm. -LDFLAGS = -Wl,--warn-common -nostdlib -Wl,-Tldscript.lds +CFLAGS = -Wall -nostdinc -ffreestanding -I. -I.. -O -m32 -fno-asynchronous-unwind-tables +LIBGCC = $(shell $(CC) -print-libgcc-file-name -m32) # To benefit from FP/64bits artihm. +LDFLAGS = -Wl,--warn-common -nostdlib -Wl,-Tldscript.lds -m32 -fno-asynchronous-unwind-tables # Main target all: userprogs.kimg @@ -80,7 +80,7 @@ userprogs.kimg: $(PROGS) >> .userprogs.lds @echo "} /DISCARD/ : { *(.text) *(.data) *(.bss) } }" \ >> .userprogs.lds - @$(LD) -r -o $@ -T.userprogs.lds + @$(LD) -r -o $@ -T.userprogs.lds -m elf_i386 # Create libraries from object files %.a: