-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile_commands.json
67 lines (67 loc) · 2.7 KB
/
compile_commands.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/cpu.c -o src/cpu.o",
"file": "src/cpu.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/kernel.c -o src/kernel.o",
"file": "src/kernel.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/framebuffer.c -o src/framebuffer.o",
"file": "src/framebuffer.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/io.c -o src/io.o",
"file": "src/io.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/mem.c -o src/mem.o",
"file": "src/mem.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/string.c -o src/string.o",
"file": "src/string.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/serial.c -o src/serial.o",
"file": "src/serial.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/keyboard.c -o src/keyboard.o",
"file": "src/keyboard.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/idts.c -o src/idts.o",
"file": "src/idts.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/terminal.c -o src/terminal.o",
"file": "src/terminal.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/unistd.c -o src/unistd.o",
"file": "src/unistd.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/stdio.c -o src/stdio.o",
"file": "src/stdio.o"
},
{
"directory": ".",
"command": "i386-elf-gcc -m32 -std=gnu99 -ffreestanding -Wall -Wextra -Wpedantic -fno-stack-protector -fno-builtin -g -c src/gdt.c -o src/gdt.o",
"file": "src/gdt.o"
}
]