diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-23 20:52:10 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-23 20:52:10 +0100 |
| commit | 4b0de97035d2a750c4a2073a1992e2eff68926d0 (patch) | |
| tree | f442f8b62d57200a5ddaab5ce2aa357c94b8f448 | |
| parent | 63f5c38ee3df8be487692852a85bd479b92a85dc (diff) | |
feat(libcompiler): Move Dialogs.h in /dev/Vendor.
| -rw-r--r-- | dbg.json (renamed from osx_dbg.json) | 0 | ||||
| -rw-r--r-- | dev/LibDebugger/POSIX.h | 4 | ||||
| -rw-r--r-- | dev/LibDebugger/src/POSIX.cc | 2 | ||||
| -rw-r--r-- | dev/LibIDE/TerminalEmulator.h | 13 | ||||
| -rw-r--r-- | dev/Vendor/Dialogs.h (renamed from dev/LibDebugger/vendor/Dialogs.h) | 0 | ||||
| -rw-r--r-- | docs/SPECIFICATION_CC.md (renamed from docs/SPECIFICATION.md) | 0 | ||||
| -rw-r--r-- | man/dbg.7 | 4 | ||||
| -rw-r--r-- | man/ld64.7 | 4 |
8 files changed, 9 insertions, 18 deletions
diff --git a/dev/LibDebugger/POSIX.h b/dev/LibDebugger/POSIX.h index 0ebe929..52af66e 100644 --- a/dev/LibDebugger/POSIX.h +++ b/dev/LibDebugger/POSIX.h @@ -4,6 +4,10 @@ #pragma once +#ifdef _WIN32 +#error Windows doesn't have a POSIX subsystem, please combine with windows instead. +#endif + #include <iostream> #include <unordered_map> diff --git a/dev/LibDebugger/src/POSIX.cc b/dev/LibDebugger/src/POSIX.cc index 89ee572..02db4ea 100644 --- a/dev/LibDebugger/src/POSIX.cc +++ b/dev/LibDebugger/src/POSIX.cc @@ -3,7 +3,7 @@ */ #include <LibCompiler/Defines.h> -#include <LibDebugger/vendor/Dialogs.h> +#include <Vendor/Dialogs.h> #include <LibDebugger/POSIX.h> #include <cstdint> #include <string> diff --git a/dev/LibIDE/TerminalEmulator.h b/dev/LibIDE/TerminalEmulator.h deleted file mode 100644 index 1d368ff..0000000 --- a/dev/LibIDE/TerminalEmulator.h +++ /dev/null @@ -1,13 +0,0 @@ -/* ------------------------------------------- - - Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved - -------------------------------------------- */ - -#pragma once - -namespace LibIDE -{ - class Terminal; - class BuildSystem; -} // namespace LibIDE diff --git a/dev/LibDebugger/vendor/Dialogs.h b/dev/Vendor/Dialogs.h index fd64026..fd64026 100644 --- a/dev/LibDebugger/vendor/Dialogs.h +++ b/dev/Vendor/Dialogs.h diff --git a/docs/SPECIFICATION.md b/docs/SPECIFICATION_CC.md index 7237dd6..7237dd6 100644 --- a/docs/SPECIFICATION.md +++ b/docs/SPECIFICATION_CC.md @@ -1,4 +1,4 @@ -.TH DBG 1 "NeKernel Internal Kit" "January 2025" "NeKernel Manual" +.TH DBG 1 "LibCompiler" "January 2025" "NeKernel Manual" .SH NAME .B dbg \- NeKernel internal debugger @@ -63,5 +63,5 @@ Display help information. .BR nekernel (7), gdb (1) .SH AUTHOR -NeKernel Development Team +Amlal El Mahrouss @@ -1,4 +1,4 @@ -.TH LD64 1 "NeKernel Internal Kit" "January 2025" "NeKernel Manual" +.TH LD64 1 "LibCompiler" "January 2025" "NeKernel Manual" .SH NAME .B ld64 \- PEF binary format linker for NeKernel @@ -59,5 +59,5 @@ Show help information. .BR nekernel (7), asm (1) .SH AUTHOR -NeKernel Development Team +Amlal El Mahrouss |
