mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
Changes with stack protector for gcc 10
This commit is contained in:
parent
82320007cf
commit
81bae882e1
2
Makefile
2
Makefile
@ -45,7 +45,7 @@ LDFLAGS=-melf_x86_64
|
||||
COPTIM=-O2
|
||||
CWARNS=-Wall -Wextra -Wno-unused-parameter -Wno-implicit-fallthrough -Werror=implicit-function-declaration -Werror=return-type #-Wpadded
|
||||
CINCLUDES=-Iinclude -Iinclude/drivers -Iinclude/kernel
|
||||
CFLAGS1=-nostdlib -ffreestanding -mcmodel=large -std=gnu11 -fstack-protector-all -fdump-rtl-expand
|
||||
CFLAGS1=-nostdlib -ffreestanding -mcmodel=large -std=gnu11 -fstack-protector-strong -fdump-rtl-expand
|
||||
CFLAGS2= -c -mno-red-zone -mno-mmx -mno-sse -mno-sse2
|
||||
CFLAGS= $(CFLAGS1) $(CFLAGS2)
|
||||
CFLAGS_MATHS= $(CFLAGS1) -c -mno-red-zone -mno-mmx
|
||||
|
47
ProjectTree
47
ProjectTree
@ -26,26 +26,39 @@
|
||||
.
|
||||
├── boot
|
||||
│ ├── grub
|
||||
│ │ ├── grub.cfg
|
||||
│ │ └── multiboot.pdf
|
||||
│ ├── loader
|
||||
│ │ ├── cpu
|
||||
│ │ │ ├── cpu32.inc
|
||||
│ │ │ └── cpu.inc
|
||||
│ │ ├── io
|
||||
│ │ │ └── terminal.inc
|
||||
│ │ ├── mem
|
||||
│ │ │ ├── management.inc
|
||||
│ │ │ └── structures.inc
|
||||
│ │ ├── multiboot
|
||||
│ │ │ ├── check.inc
|
||||
│ │ │ └── header.inc
|
||||
│ │ └── loader.asm
|
||||
│ └── folder.desc
|
||||
│ │ └── grub.cfg
|
||||
│ └── loader
|
||||
│ ├── cpu
|
||||
│ │ ├── cpu32.inc
|
||||
│ │ └── cpu.inc
|
||||
│ ├── io
|
||||
│ │ └── terminal.inc
|
||||
│ ├── mem
|
||||
│ │ ├── management.inc
|
||||
│ │ └── structures.inc
|
||||
│ ├── multiboot
|
||||
│ │ ├── check.inc
|
||||
│ │ └── header.inc
|
||||
│ └── loader.asm
|
||||
├── build
|
||||
│ ├── create_disk.sh
|
||||
│ ├── install-os-k.sh
|
||||
│ └── kernel.ld
|
||||
├── docs
|
||||
│ ├── boot
|
||||
│ │ ├── grub
|
||||
│ │ │ └── grub.desc
|
||||
│ │ └── loader
|
||||
│ │ ├── cpu
|
||||
│ │ ├── io
|
||||
│ │ └── loader.desc
|
||||
│ ├── kaleid
|
||||
│ │ ├── drivers
|
||||
│ │ ├── kernel
|
||||
│ │ ├── libbuf
|
||||
│ │ └── libc
|
||||
│ ├── COPYING.GFDL
|
||||
│ └── Documentation
|
||||
├── include
|
||||
│ ├── drivers
|
||||
│ │ └── ata.h
|
||||
@ -166,4 +179,4 @@
|
||||
├── ProjectTree
|
||||
└── README.md
|
||||
|
||||
30 directories, 111 files
|
||||
39 directories, 115 files
|
||||
|
Loading…
Reference in New Issue
Block a user