summaryrefslogtreecommitdiffhomepage
path: root/tools/cppdrv.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 17:27:19 -0500
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 17:27:19 -0500
commitdad25544802de6d4cd839f5d6d5753ad7faeef97 (patch)
treeac60308829c163689c47da059d5de14296d81f4e /tools/cppdrv.cc
parentbdef578a578177ce95c01fa061a028292556ecbe (diff)
chore: update general specs and citation file, breaking project structure changes as well.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tools/cppdrv.cc')
-rw-r--r--tools/cppdrv.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/cppdrv.cc b/tools/cppdrv.cc
deleted file mode 100644
index 2cccf2b..0000000
--- a/tools/cppdrv.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license
-
-======================================== */
-
-/// @file cxxdrv.cc
-/// @brief NeCTI frontend preprocessor.
-
-#include <CompilerKit/Defines.h>
-#include <CompilerKit/ErrorID.h>
-#include <CompilerKit/Version.h>
-#include <cstring>
-#include <iostream>
-#include <vector>
-
-CK_IMPORT_C int CPlusPlusPreprocessorMain(int argc, char const* argv[]);
-
-int main(int argc, char const* argv[]) {
- if (auto code = CPlusPlusPreprocessorMain(argc, argv); code > 0) {
- std::printf("cppdrv: preprocessor exited with code %i.\n", code);
-
- return NECTI_EXEC_ERROR;
- }
-
- return NECTI_SUCCESS;
-}