summaryrefslogtreecommitdiffhomepage
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
parent554f2da6a169988fea276846aaa0cb901384ac5e (diff)
Rename tools accordingly,
-rw-r--r--.gitignore2
-rw-r--r--ReadMe.md2
-rw-r--r--tools/necc.cc (renamed from tools/tqcc.cc)4
-rw-r--r--tools/necc.json (renamed from tools/tqcc.json)4
4 files changed, 6 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 8730d7a..4bdfb22 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,7 +10,7 @@ local.properties
tools/asm
tools/ld64
-tools/tqcc
+tools/necc
*.pp
*.masm
diff --git a/ReadMe.md b/ReadMe.md
index 7a1da4a..28e5c22 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -9,7 +9,7 @@ A dialect of C++ for ZkaOS.
Start by cloning the repository:
```
-git clone git@github.com:amlel-el-mahrouss/compiler.git
+git clone git@github.com:mediaswirl/necc.git
```
And then follow the build instructions (Install.md)
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",