Cleanup, finalization and end of compiler issues
This commit is contained in:
parent
1ae4339d7a
commit
dbce420e56
|
@ -1,4 +1,4 @@
|
||||||
OUTPUT_FORMAT("binary")
|
OUTPUT_FORMAT("elf32-i386")
|
||||||
ENTRY(start)
|
ENTRY(start)
|
||||||
phys = 0x00100000;
|
phys = 0x00100000;
|
||||||
SECTIONS
|
SECTIONS
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "vga.h"
|
#include "arch/i386/vga.h"
|
||||||
|
|
||||||
struct csi_sequence {
|
struct csi_sequence {
|
||||||
const char* parameter;
|
const char* parameter;
|
||||||
|
|
2
makefile
2
makefile
|
@ -2,7 +2,7 @@ DEFAULT_HOST:=i686-elf
|
||||||
HOST?=DEFAULT_HOST
|
HOST?=DEFAULT_HOST
|
||||||
HOSTARCH:=i386
|
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?=
|
CPPFLAGS?=
|
||||||
LDFLAGS?=
|
LDFLAGS?=
|
||||||
LIBS?=
|
LIBS?=
|
||||||
|
|
Loading…
Reference in New Issue
Block a user