Skip to content

Commit

Permalink
toolchain: Fix GCC builds
Browse files Browse the repository at this point in the history
  • Loading branch information
marv7000 committed Jan 10, 2025
1 parent 7fea593 commit 1830926
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 193 deletions.
14 changes: 0 additions & 14 deletions .github/CODEOWNERS

This file was deleted.

71 changes: 0 additions & 71 deletions .github/ISSUE_TEMPLATE/bug_report.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/ISSUE_TEMPLATE/feature_request.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

14 changes: 1 addition & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,7 @@
{
"type": "lldb",
"request": "custom",
"name": "Debug x86_64",
"targetCreateCommands": [
"settings set target.source-map ${workspaceFolder}/../bootstrap/build/source/kernel ${workspaceFolder}",
"target create ${workspaceFolder}/../bootstrap/build/build/kernel/bin/menix"
],
"processCreateCommands": [
"gdb-remote localhost:1234"
]
},
{
"type": "lldb",
"request": "custom",
"name": "Debug riscv64",
"name": "Debug",
"targetCreateCommands": [
"settings set target.source-map ${workspaceFolder}/../bootstrap/build/source/kernel ${workspaceFolder}",
"target create ${workspaceFolder}/../bootstrap/build/build/kernel/bin/menix"
Expand Down
2 changes: 1 addition & 1 deletion kernel/arch/riscv64/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
include(${MENIX_UTIL_PATH})
add_architecture(riscv64
system/arch.c
system/arch.asm
system/arch.s
sch/core.c
sch/thread.c
memory/vm.c
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion kernel/arch/x86_64/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_architecture(x86_64
system/idt.c
system/tss.c
system/serial.c
system/arch.asm
system/arch.s
system/archctl.c
system/arch.c
system/apic.c
Expand Down
File renamed without changes.

0 comments on commit 1830926

Please sign in to comment.