summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 13:58:35 -0500
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 13:58:51 -0500
commit2e74dfd96fb97b03bf44035d7a3864066af4ece8 (patch)
treecb1a004d0f2a1c1e6921e1056f26eb4a6206ed4b /tools
parent0e06135601f94f68e1bfcacfe5d77e2cd50c1863 (diff)
chore: Redesigned sysroot repository.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/.keep0
-rw-r--r--tools/steps.cc36
-rw-r--r--tools/steps.toml8
3 files changed, 0 insertions, 44 deletions
diff --git a/tools/.keep b/tools/.keep
deleted file mode 100644
index e69de29..0000000
--- a/tools/.keep
+++ /dev/null
diff --git a/tools/steps.cc b/tools/steps.cc
deleted file mode 100644
index ccad634..0000000
--- a/tools/steps.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-/* ===========================================================
-
- Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license
-
-=========================================================== */
-
-#include <io/print.hpp>
-#include <steps/steps.hpp>
-
-/// =========================================================== ///
-/// Use operators from steps namespace to compare steps records.
-/// =========================================================== ///
-using namespace ocl::steps::operators;
-
-const auto kStepsFileRoot = "/system/install.stp";
-
-/// =========================================================== ///
-/// @brief Main function for running steps on NeKernel.
-/// =========================================================== ///
-int main(void) {
- ocl::io::print("steps: running steps for program...\n");
-
- std::ifstream file(kStepsFileRoot);
- ocl::steps::record steps;
-
- file >> steps;
-
- if (!ocl::steps::is_valid(steps))
- return EXIT_FAILURE;
-
- /// AMLALE: Read steps from file and process them.
-
- ocl::io::print("steps: done.\n");
-
- return EXIT_SUCCESS;
-} \ No newline at end of file
diff --git a/tools/steps.toml b/tools/steps.toml
deleted file mode 100644
index 8de64fc..0000000
--- a/tools/steps.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-compiler_path = "clang++"
-compiler_std = "c++20"
-headers_path = [ "../lib", "../lib/libocl/dev/", "/opt/homebrew/Cellar/boost/1.89.0/include" ]
-sources_path = [ "steps.cc" ]
-output_name = "steps-sysroot"
-compiler_flags = [ "-fPIC" ]
-cpp_macros = [ "__NE_STEPS__" ]
-run_after_build = false