summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <113760121+amlel-el-mahrouss@users.noreply.github.com>2025-01-25 09:14:50 +0100
committerGitHub <noreply@github.com>2025-01-25 09:14:50 +0100
commit44d67d8c92cec74ffa4fc2070154bbc9e545bc6c (patch)
tree6e918172fb74db864e3ab5ded08ef3408b9f0996 /tools
parent554f2da6a169988fea276846aaa0cb901384ac5e (diff)
Rename tools accordingly,
Diffstat (limited to 'tools')
-rw-r--r--tools/necc.cc (renamed from tools/tqcc.cc)4
-rw-r--r--tools/necc.json (renamed from tools/tqcc.json)4
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/tqcc.cc b/tools/necc.cc
index 0fd8fdb..9e59f48 100644
--- a/tools/tqcc.cc
+++ b/tools/necc.cc
@@ -4,7 +4,7 @@
------------------------------------------- */
-/// @file tqcc.cc
+/// @file necc.cc
/// @brief ZKA C++ frontend compiler.
#include <LibCompiler/Defines.h>
@@ -61,7 +61,7 @@ int main(int argc, char const* argv[])
args_list_cxx.push_back(arg);
} else if (strstr(argv[index_arg], ".c"))
{
- std::printf("tqcc: error: C is not ready yet.\n");
+ std::printf("necc: error: C is not ready yet.\n");
return EXIT_FAILURE;
}
}
diff --git a/tools/tqcc.json b/tools/necc.json
index d83799e..a60b8dd 100644
--- a/tools/tqcc.json
+++ b/tools/necc.json
@@ -2,8 +2,8 @@
"compiler_path": "g++",
"compiler_std": "c++20",
"headers_path": ["../dev/LibCompiler", "../dev/", "../dev/LibCompiler/src/Detail"],
- "sources_path": ["tqcc.cc"],
- "output_name": "tqcc",
+ "sources_path": ["necc.cc"],
+ "output_name": "necc",
"compiler_flags": ["-L/usr/local/lib", "-lCxxCompiler"],
"cpp_macros": [
"__CL__=202401",