summaryrefslogtreecommitdiffhomepage
path: root/public/tools/ld
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-04-24 13:38:05 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-04-24 13:38:05 +0200
commitde88c44c68f3941e003ddaf13042875370f10978 (patch)
tree14b0909de5d6d10fc7ef44fc470d210f21e94f25 /public/tools/ld
parente6185ca92212ab0686892a1a12efd392f895c1f7 (diff)
dev, tooling: Improve the tools and frameworks on userspace.
Details: - See commit details for more. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/tools/ld')
-rw-r--r--public/tools/ld/.keep0
-rw-r--r--public/tools/ld/dist/.keep0
-rw-r--r--public/tools/ld/ld.json12
-rw-r--r--public/tools/ld/src/CommandLine.cc15
4 files changed, 0 insertions, 27 deletions
diff --git a/public/tools/ld/.keep b/public/tools/ld/.keep
deleted file mode 100644
index e69de29b..00000000
--- a/public/tools/ld/.keep
+++ /dev/null
diff --git a/public/tools/ld/dist/.keep b/public/tools/ld/dist/.keep
deleted file mode 100644
index e69de29b..00000000
--- a/public/tools/ld/dist/.keep
+++ /dev/null
diff --git a/public/tools/ld/ld.json b/public/tools/ld/ld.json
deleted file mode 100644
index 940c3a89..00000000
--- a/public/tools/ld/ld.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "compiler_path": "g++",
- "compiler_std": "c++20",
- "headers_path": ["./", "../../../dev"],
- "sources_path": ["src/CommandLine.cc"],
- "output_name": "./dist/fwrkld",
- "cpp_macros": [
- "kLDVersion=0x0100",
- "kLDVersionHighest=0x0100",
- "kLDVersionLowest=0x0100"
- ]
-}
diff --git a/public/tools/ld/src/CommandLine.cc b/public/tools/ld/src/CommandLine.cc
deleted file mode 100644
index ace93ed3..00000000
--- a/public/tools/ld/src/CommandLine.cc
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * Created on Thu Oct 17 08:00:42 CEST 2024
- *
- * Copyright (c) 2024-2025 Amlal El Mahrouss
- */
-
-#include <user/SystemCalls.h>
-
-/// @brief Placeholder program.
-
-SInt32 main(SInt32 argc, Char* argv[])
-{
- PrintOut(nullptr, "ld: A linker to be installed.\rld: This program is present as a placeholder.");
- return EXIT_FAILURE;
-}