Cleanup, finalization and end of compiler issues

This commit is contained in:
Curle 2019-06-22 19:08:56 +01:00
parent 1ae4339d7a
commit dbce420e56
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
OUTPUT_FORMAT("binary")
OUTPUT_FORMAT("elf32-i386")
ENTRY(start)
phys = 0x00100000;
SECTIONS

View File

@ -4,7 +4,7 @@
#include <stddef.h>
#include <stdint.h>
#include "vga.h"
#include "arch/i386/vga.h"
struct csi_sequence {
const char* parameter;

View File

@ -2,7 +2,7 @@ DEFAULT_HOST:=i686-elf
HOST?=DEFAULT_HOST
HOSTARCH:=i386
CFLAGS?= -O2 -g -m32 -no-pie -fno-stack-protector -Wl,--build-id=none
CFLAGS?= -O2 -g -m32 -fno-pie -fno-stack-protector -Wl,--build-id=none
CPPFLAGS?=
LDFLAGS?=
LIBS?=