diff --git a/.idea/editor.xml b/.idea/editor.xml
new file mode 100644
index 0000000..1f0ef49
--- /dev/null
+++ b/.idea/editor.xml
@@ -0,0 +1,580 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 750e551..a5826a0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,4 +11,6 @@ add_executable(NextFlick main.cpp
admin.h
Media.h
Film.h
- Series.h)
+ Series.h
+ CompressedTrie.cpp
+ CompressedTrie.h)
diff --git a/CompressedTrie.cpp b/CompressedTrie.cpp
new file mode 100644
index 0000000..ad4d03d
--- /dev/null
+++ b/CompressedTrie.cpp
@@ -0,0 +1,135 @@
+//
+// Created by ZBook Fury on 23/01/2025.
+//
+
+#include "CompressedTrie.h"
+
+int CompressedTrie::findCommonPrefix(const string &str1, const string &str2) {
+ int i = 0;
+ while (i < str1.size() && i < str2.size() && str1[i] == str2[i]) {
+ ++i;
+ }
+ return i;
+}
+
+void CompressedTrie::insert(Media *film) {
+ Node* current = root;
+ string remainingKey = film->getName();
+
+ while (!remainingKey.empty()) {
+ bool isEdgeFound = false;
+
+ for (auto it = current->children.begin(); it != current->children.end(); ++it) {
+ string edgeLabel = it->first;
+ int commonPrefixLength = findCommonPrefix(remainingKey, edgeLabel);
+
+ if (commonPrefixLength > 0) {
+ isEdgeFound = true;
+
+ if (commonPrefixLength == edgeLabel.size()) {
+ current = it->second;
+ remainingKey = substring(remainingKey, commonPrefixLength);
+ } else {
+ Node* newNode = new Node();
+ string remainingEdge = substring(edgeLabel, commonPrefixLength);
+
+ Node* oldChild = it->second;
+ current->children.erase(it);
+ current->children[edgeLabel.substr(0, commonPrefixLength)] = newNode;
+
+ newNode->children[remainingEdge] = oldChild;
+
+ if (remainingKey.size() > commonPrefixLength) {
+ string remainingKeyPart = substring(remainingKey, commonPrefixLength);
+ newNode->children[remainingKeyPart] = new Node();
+ newNode->children[remainingKeyPart]->isEnd = true;
+ newNode->children[remainingKeyPart]->mediaMap[film->getName()] = film;
+ } else {
+ newNode->isEnd = true;
+ newNode->mediaMap[film->getName()] = film;
+ }
+ }
+ break;
+ }
+ }
+
+ if (!isEdgeFound) {
+ current->children[remainingKey] = new Node();
+ current->children[remainingKey]->isEnd = true;
+ current->children[remainingKey]->mediaMap[film->getName()] = film;
+ return;
+ }
+ }
+
+ current->isEnd = true;
+ current->mediaMap[film->getName()] = film;
+
+ // Debug: Print the tree structure after inserting each film
+ cout << "Inserted: " << film->getName() << endl;
+ printTree(root, "");
+}
+
+void CompressedTrie::printTree(Node *node, const string &prefix) {
+ if (!node) return;
+
+ for (const auto& child : node->children) {
+ cout << prefix << child.first << " -> ";
+ for (const auto& media : child.second->mediaMap) {
+ cout << media.first << " ";
+ }
+ cout << endl;
+ printTree(child.second, prefix + " ");
+ }
+}
+
+void CompressedTrie::collectResults(Node* node, vector& results) {
+ if (node->isEnd) {
+ for (const auto& mediaPair : node->mediaMap) {
+ results.push_back(mediaPair.second);
+ }
+ }
+
+ for (const auto& child : node->children) {
+ collectResults(child.second, results);
+ }
+}
+vector CompressedTrie:: search(const string& key) {
+ vector results;
+ Node* current = root;
+ string remainingKey = key;
+
+ while (!remainingKey.empty()) {
+ bool isEdgeFound = false;
+
+
+ for (const auto& it : current->children) {
+ string edgeLabel = it.first;
+ int commonPrefixLength = findCommonPrefix(remainingKey, edgeLabel);
+
+ if (commonPrefixLength > 0) {
+ isEdgeFound = true;
+
+ if (commonPrefixLength == edgeLabel.size()) {
+ current = it.second;
+ remainingKey = substring(remainingKey, commonPrefixLength);
+
+
+ if (remainingKey.empty()) {
+ collectResults(current, results);
+ }
+ } else {
+ collectResults(it.second, results);
+ remainingKey.clear();
+ break;
+ }
+ break;
+ }
+ }
+
+ if (!isEdgeFound) {
+ break;
+ }
+ }
+
+ return results;
+}
diff --git a/CompressedTrie.h b/CompressedTrie.h
new file mode 100644
index 0000000..c033948
--- /dev/null
+++ b/CompressedTrie.h
@@ -0,0 +1,64 @@
+//
+// Created by ZBook Fury on 23/01/2025.
+//
+
+#ifndef COMPRESSEDTRIE_H
+#define COMPRESSEDTRIE_H
+
+#include
+#include
+#include
+#include
+#include "Media.h"
+using namespace std;
+
+class Node {
+public:
+ unordered_map children;
+ unordered_map mediaMap;
+ bool isEnd;
+
+ Node() : isEnd(false) {}
+};
+
+
+class CompressedTrie {
+private:
+ Node* root;
+
+
+ string substring(const string& str, int index) {
+ return str.substr(index);
+ }
+
+ int findCommonPrefix(const string& str1, const string& str2);
+
+public:
+ // Constructor for the trie
+ CompressedTrie() {
+ root = new Node();
+ }
+
+ /* ~CompressedTrie() {
+ deleteTree(root);
+ }*/
+
+ /*void deleteTree(Node* node) {
+ if (!node) return;
+ for (auto& child : node->children) {
+ deleteTree(child.second);
+ }
+ delete node;
+ }*/
+
+ Node* getRoot() {
+ return root;
+ }
+ void insert(Media* film);
+ void printTree(Node* node, const string& prefix);
+ vector search(const string& query);
+ void collectResults(Node* node, vector& results);
+
+};
+
+#endif //COMPRESSEDTRIE_H
diff --git a/Film.h b/Film.h
index b3bff71..dae166c 100644
--- a/Film.h
+++ b/Film.h
@@ -8,13 +8,13 @@
#include "Media.h"
class Film : public Media {
private:
- int duration;
+ int duration{};
public:
Film(const std::string& name, int releaseYear, int duration, const std::string& country,
const std::string& genre, const std::string& language, double rating, const std::string& summary)
: Media(name, releaseYear, country, genre, language, rating, summary), duration(duration) {}
-
+ Film(const std::string &name) : Media(name) {}
void displayDetails() const override {
std::cout << "Film: " << name << "\n"
<< "Year: " << releaseYear << "\n"
@@ -25,5 +25,6 @@ class Film : public Media {
<< "Rating: " << rating << "\n"
<< "Summary: " << summary << "\n";
}
+
};
#endif //NEXTFLICK_FILM_H
diff --git a/Media.h b/Media.h
index 725b25d..3106d13 100644
--- a/Media.h
+++ b/Media.h
@@ -22,9 +22,9 @@ class Media {
public:
Media(const std::string& name, int releaseYear, const std::string& country,const std::string& genre, const std::string& language, double rating, const std::string& summary)
: name(name), releaseYear(releaseYear), country(country),genre(genre), language(language), rating(rating), summary(summary) {}
-
+ Media(const std::string& name):name(name) {}
virtual ~Media() = default;
-
+ std::string getName() const { return name; }
virtual void displayDetails() const = 0;
};
diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d2b64f5df7d496fb9859.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-4b4068ffa991af72a628.json
similarity index 79%
rename from cmake-build-debug/.cmake/api/v1/reply/cache-v2-d2b64f5df7d496fb9859.json
rename to cmake-build-debug/.cmake/api/v1/reply/cache-v2-4b4068ffa991af72a628.json
index 8aa2514..b3da940 100644
--- a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d2b64f5df7d496fb9859.json
+++ b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-4b4068ffa991af72a628.json
@@ -15,7 +15,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/addr2line"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/addr2line.exe"
},
{
"name" : "CMAKE_AR",
@@ -31,7 +31,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/ar"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ar.exe"
},
{
"name" : "CMAKE_BUILD_TYPE",
@@ -55,7 +55,7 @@
}
],
"type" : "INTERNAL",
- "value" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug"
+ "value" : "c:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug"
},
{
"name" : "CMAKE_CACHE_MAJOR_VERSION",
@@ -115,7 +115,7 @@
}
],
"type" : "INTERNAL",
- "value" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cmake"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe"
},
{
"name" : "CMAKE_CPACK_COMMAND",
@@ -127,7 +127,7 @@
}
],
"type" : "INTERNAL",
- "value" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cpack"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cpack.exe"
},
{
"name" : "CMAKE_CTEST_COMMAND",
@@ -139,7 +139,7 @@
}
],
"type" : "INTERNAL",
- "value" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/ctest"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/ctest.exe"
},
{
"name" : "CMAKE_CXX_COMPILER",
@@ -155,7 +155,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/c++"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/g++.exe"
},
{
"name" : "CMAKE_CXX_COMPILER_AR",
@@ -171,7 +171,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/gcc-ar"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe"
},
{
"name" : "CMAKE_CXX_COMPILER_RANLIB",
@@ -187,7 +187,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/gcc-ranlib"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe"
},
{
"name" : "CMAKE_CXX_FLAGS",
@@ -269,6 +269,22 @@
"type" : "STRING",
"value" : "-O2 -g -DNDEBUG"
},
+ {
+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Libraries linked by default with all C++ applications."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
+ },
{
"name" : "CMAKE_C_COMPILER",
"properties" :
@@ -283,7 +299,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/cc"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc.exe"
},
{
"name" : "CMAKE_C_COMPILER_AR",
@@ -299,7 +315,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/gcc-ar"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe"
},
{
"name" : "CMAKE_C_COMPILER_RANLIB",
@@ -315,7 +331,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/gcc-ranlib"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe"
},
{
"name" : "CMAKE_C_FLAGS",
@@ -397,6 +413,22 @@
"type" : "STRING",
"value" : "-O2 -g -DNDEBUG"
},
+ {
+ "name" : "CMAKE_C_STANDARD_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Libraries linked by default with all C applications."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
+ },
{
"name" : "CMAKE_DLLTOOL",
"properties" :
@@ -411,7 +443,7 @@
}
],
"type" : "FILEPATH",
- "value" : "CMAKE_DLLTOOL-NOTFOUND"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/dlltool.exe"
},
{
"name" : "CMAKE_EXECUTABLE_FORMAT",
@@ -423,7 +455,7 @@
}
],
"type" : "INTERNAL",
- "value" : "ELF"
+ "value" : "Unknown"
},
{
"name" : "CMAKE_EXE_LINKER_FLAGS",
@@ -505,22 +537,6 @@
"type" : "STRING",
"value" : ""
},
- {
- "name" : "CMAKE_EXPORT_COMPILE_COMMANDS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Enable/Disable output of compile commands during generation."
- }
- ],
- "type" : "BOOL",
- "value" : ""
- },
{
"name" : "CMAKE_EXTRA_GENERATOR",
"properties" :
@@ -543,7 +559,7 @@
}
],
"type" : "STATIC",
- "value" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/pkgRedirects"
+ "value" : "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/pkgRedirects"
},
{
"name" : "CMAKE_GENERATOR",
@@ -555,7 +571,7 @@
}
],
"type" : "INTERNAL",
- "value" : "Ninja"
+ "value" : "MinGW Makefiles"
},
{
"name" : "CMAKE_GENERATOR_INSTANCE",
@@ -594,40 +610,40 @@
"value" : ""
},
{
- "name" : "CMAKE_HOME_DIRECTORY",
+ "name" : "CMAKE_GNUtoMS",
"properties" :
[
{
"name" : "HELPSTRING",
- "value" : "Source directory with the top level CMakeLists.txt file for this project"
+ "value" : "Convert GNU import libraries to MS format (requires Visual Studio)"
}
],
- "type" : "INTERNAL",
- "value" : "/home/ghazal/CLionProjects/NextFlick"
+ "type" : "BOOL",
+ "value" : "OFF"
},
{
- "name" : "CMAKE_INSTALL_PREFIX",
+ "name" : "CMAKE_HOME_DIRECTORY",
"properties" :
[
{
"name" : "HELPSTRING",
- "value" : "Install path prefix, prepended onto install directories."
+ "value" : "Source directory with the top level CMakeLists.txt file for this project"
}
],
- "type" : "PATH",
- "value" : "/usr/local"
+ "type" : "INTERNAL",
+ "value" : "C:/Users/ZBook Fury/CLionProjects/NextFlick"
},
{
- "name" : "CMAKE_INSTALL_SO_NO_EXE",
+ "name" : "CMAKE_INSTALL_PREFIX",
"properties" :
[
{
"name" : "HELPSTRING",
- "value" : "Install .so files without execute permission."
+ "value" : "Install path prefix, prepended onto install directories."
}
],
- "type" : "INTERNAL",
- "value" : "0"
+ "type" : "PATH",
+ "value" : "C:/Program Files (x86)/NextFlick"
},
{
"name" : "CMAKE_LINKER",
@@ -643,19 +659,23 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/ld"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe"
},
{
"name" : "CMAKE_MAKE_PROGRAM",
"properties" :
[
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
{
"name" : "HELPSTRING",
- "value" : "No help, variable specified on the command line."
+ "value" : "make program"
}
],
- "type" : "UNINITIALIZED",
- "value" : "/home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja"
+ "type" : "FILEPATH",
+ "value" : "C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe"
},
{
"name" : "CMAKE_MODULE_LINKER_FLAGS",
@@ -751,7 +771,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/nm"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/nm.exe"
},
{
"name" : "CMAKE_NUMBER_OF_MAKEFILES",
@@ -779,7 +799,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/objcopy"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/objcopy.exe"
},
{
"name" : "CMAKE_OBJDUMP",
@@ -795,7 +815,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/objdump"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/objdump.exe"
},
{
"name" : "CMAKE_PLATFORM_INFO_INITIALIZED",
@@ -859,7 +879,115 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/ranlib"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ranlib.exe"
+ },
+ {
+ "name" : "CMAKE_RC_COMPILER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "RC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/windres.exe"
+ },
+ {
+ "name" : "CMAKE_RC_COMPILER_WORKS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
},
{
"name" : "CMAKE_READELF",
@@ -875,7 +1003,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/readelf"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/readelf.exe"
},
{
"name" : "CMAKE_ROOT",
@@ -887,7 +1015,7 @@
}
],
"type" : "INTERNAL",
- "value" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30"
},
{
"name" : "CMAKE_SHARED_LINKER_FLAGS",
@@ -1095,7 +1223,7 @@
}
],
"type" : "FILEPATH",
- "value" : "/usr/bin/strip"
+ "value" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/strip.exe"
},
{
"name" : "CMAKE_TAPI",
@@ -1113,18 +1241,6 @@
"type" : "FILEPATH",
"value" : "CMAKE_TAPI-NOTFOUND"
},
- {
- "name" : "CMAKE_UNAME",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "uname command"
- }
- ],
- "type" : "INTERNAL",
- "value" : "/usr/bin/uname"
- },
{
"name" : "CMAKE_VERBOSE_MAKEFILE",
"properties" :
@@ -1151,7 +1267,7 @@
}
],
"type" : "STATIC",
- "value" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug"
+ "value" : "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug"
},
{
"name" : "NextFlick_IS_TOP_LEVEL",
@@ -1175,7 +1291,7 @@
}
],
"type" : "STATIC",
- "value" : "/home/ghazal/CLionProjects/NextFlick"
+ "value" : "C:/Users/ZBook Fury/CLionProjects/NextFlick"
},
{
"name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED",
diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2dea7ada1b8cdde1e7e0.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2dea7ada1b8cdde1e7e0.json
deleted file mode 100644
index 88f3ccd..0000000
--- a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2dea7ada1b8cdde1e7e0.json
+++ /dev/null
@@ -1,141 +0,0 @@
-{
- "inputs" :
- [
- {
- "path" : "CMakeLists.txt"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux-Initialize.cmake"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/UnixPaths.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux-GNU-C.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux-GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux-GNU-CXX.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Platform/Linux-GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
- }
- ],
- "kind" : "cmakeFiles",
- "paths" :
- {
- "build" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug",
- "source" : "/home/ghazal/CLionProjects/NextFlick"
- },
- "version" :
- {
- "major" : 1,
- "minor" : 1
- }
-}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2f6f3e3933c7b037b26a.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2f6f3e3933c7b037b26a.json
new file mode 100644
index 0000000..3cdef53
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-2f6f3e3933c7b037b26a.json
@@ -0,0 +1,165 @@
+{
+ "inputs" :
+ [
+ {
+ "path" : "CMakeLists.txt"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ }
+ ],
+ "kind" : "cmakeFiles",
+ "paths" :
+ {
+ "build" : "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug",
+ "source" : "C:/Users/ZBook Fury/CLionProjects/NextFlick"
+ },
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-6fdc8a744e682a9a049c.json b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-170fd3b4577ad88b164e.json
similarity index 72%
rename from cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-6fdc8a744e682a9a049c.json
rename to cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-170fd3b4577ad88b164e.json
index b656d36..8a72b32 100644
--- a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-6fdc8a744e682a9a049c.json
+++ b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-170fd3b4577ad88b164e.json
@@ -6,7 +6,7 @@
[
{
"build" : ".",
- "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
+ "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
"minimumCMakeVersion" :
{
"string" : "3.30"
@@ -39,7 +39,7 @@
{
"directoryIndex" : 0,
"id" : "NextFlick::@6890427a1f51a3e7e1df",
- "jsonFile" : "target-NextFlick-Debug-50cca67830a050799aab.json",
+ "jsonFile" : "target-NextFlick-Debug-207f5a7eaf805f58e927.json",
"name" : "NextFlick",
"projectIndex" : 0
}
@@ -49,8 +49,8 @@
"kind" : "codemodel",
"paths" :
{
- "build" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug",
- "source" : "/home/ghazal/CLionProjects/NextFlick"
+ "build" : "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug",
+ "source" : "C:/Users/ZBook Fury/CLionProjects/NextFlick"
},
"version" :
{
diff --git a/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json
similarity index 100%
rename from cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json
rename to cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json
diff --git a/cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T06-40-42-0040.json b/cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T15-14-22-0444.json
similarity index 54%
rename from cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T06-40-42-0040.json
rename to cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T15-14-22-0444.json
index 2b1f557..d88a920 100644
--- a/cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T06-40-42-0040.json
+++ b/cmake-build-debug/.cmake/api/v1/reply/index-2025-01-23T15-14-22-0444.json
@@ -4,14 +4,14 @@
"generator" :
{
"multiConfig" : false,
- "name" : "Ninja"
+ "name" : "MinGW Makefiles"
},
"paths" :
{
- "cmake" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cmake",
- "cpack" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cpack",
- "ctest" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/ctest",
- "root" : "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30"
+ "cmake" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe",
+ "cpack" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cpack.exe",
+ "ctest" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/ctest.exe",
+ "root" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30"
},
"version" :
{
@@ -26,7 +26,7 @@
"objects" :
[
{
- "jsonFile" : "codemodel-v2-6fdc8a744e682a9a049c.json",
+ "jsonFile" : "codemodel-v2-170fd3b4577ad88b164e.json",
"kind" : "codemodel",
"version" :
{
@@ -35,7 +35,7 @@
}
},
{
- "jsonFile" : "cache-v2-d2b64f5df7d496fb9859.json",
+ "jsonFile" : "cache-v2-4b4068ffa991af72a628.json",
"kind" : "cache",
"version" :
{
@@ -44,7 +44,7 @@
}
},
{
- "jsonFile" : "cmakeFiles-v1-2dea7ada1b8cdde1e7e0.json",
+ "jsonFile" : "cmakeFiles-v1-2f6f3e3933c7b037b26a.json",
"kind" : "cmakeFiles",
"version" :
{
@@ -53,7 +53,7 @@
}
},
{
- "jsonFile" : "toolchains-v1-6b404eeb2db299b518ca.json",
+ "jsonFile" : "toolchains-v1-85eb8df44f8ece363688.json",
"kind" : "toolchains",
"version" :
{
@@ -66,7 +66,7 @@
{
"cache-v2" :
{
- "jsonFile" : "cache-v2-d2b64f5df7d496fb9859.json",
+ "jsonFile" : "cache-v2-4b4068ffa991af72a628.json",
"kind" : "cache",
"version" :
{
@@ -76,7 +76,7 @@
},
"cmakeFiles-v1" :
{
- "jsonFile" : "cmakeFiles-v1-2dea7ada1b8cdde1e7e0.json",
+ "jsonFile" : "cmakeFiles-v1-2f6f3e3933c7b037b26a.json",
"kind" : "cmakeFiles",
"version" :
{
@@ -86,7 +86,7 @@
},
"codemodel-v2" :
{
- "jsonFile" : "codemodel-v2-6fdc8a744e682a9a049c.json",
+ "jsonFile" : "codemodel-v2-170fd3b4577ad88b164e.json",
"kind" : "codemodel",
"version" :
{
@@ -96,7 +96,7 @@
},
"toolchains-v1" :
{
- "jsonFile" : "toolchains-v1-6b404eeb2db299b518ca.json",
+ "jsonFile" : "toolchains-v1-85eb8df44f8ece363688.json",
"kind" : "toolchains",
"version" :
{
diff --git a/cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-50cca67830a050799aab.json b/cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-207f5a7eaf805f58e927.json
similarity index 79%
rename from cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-50cca67830a050799aab.json
rename to cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-207f5a7eaf805f58e927.json
index 7bd86de..b5c57d7 100644
--- a/cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-50cca67830a050799aab.json
+++ b/cmake-build-debug/.cmake/api/v1/reply/target-NextFlick-Debug-207f5a7eaf805f58e927.json
@@ -2,7 +2,10 @@
"artifacts" :
[
{
- "path" : "NextFlick"
+ "path" : "NextFlick.exe"
+ },
+ {
+ "path" : "NextFlick.pdb"
}
],
"backtrace" : 1,
@@ -51,7 +54,8 @@
[
0,
1,
- 4
+ 4,
+ 9
]
}
],
@@ -67,12 +71,16 @@
{
"fragment" : "",
"role" : "flags"
+ },
+ {
+ "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
+ "role" : "libraries"
}
],
"language" : "CXX"
},
"name" : "NextFlick",
- "nameOnDisk" : "NextFlick",
+ "nameOnDisk" : "NextFlick.exe",
"paths" :
{
"build" : ".",
@@ -86,7 +94,8 @@
[
0,
1,
- 4
+ 4,
+ 9
]
},
{
@@ -98,7 +107,8 @@
5,
6,
7,
- 8
+ 8,
+ 10
]
}
],
@@ -151,6 +161,17 @@
"backtrace" : 1,
"path" : "Series.h",
"sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "CompressedTrie.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "CompressedTrie.h",
+ "sourceGroupIndex" : 1
}
],
"type" : "EXECUTABLE"
diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-6b404eeb2db299b518ca.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-6b404eeb2db299b518ca.json
deleted file mode 100644
index e66f362..0000000
--- a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-6b404eeb2db299b518ca.json
+++ /dev/null
@@ -1,106 +0,0 @@
-{
- "kind" : "toolchains",
- "toolchains" :
- [
- {
- "compiler" :
- {
- "id" : "GNU",
- "implicit" :
- {
- "includeDirectories" :
- [
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include",
- "/usr/local/include",
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed",
- "/usr/include"
- ],
- "linkDirectories" :
- [
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1",
- "/usr/lib",
- "/lib"
- ],
- "linkFrameworkDirectories" : [],
- "linkLibraries" :
- [
- "gcc",
- "gcc_s",
- "c",
- "gcc",
- "gcc_s"
- ]
- },
- "path" : "/usr/bin/cc",
- "version" : "14.1.1"
- },
- "language" : "C",
- "sourceFileExtensions" :
- [
- "c",
- "m"
- ]
- },
- {
- "compiler" :
- {
- "id" : "GNU",
- "implicit" :
- {
- "includeDirectories" :
- [
- "/usr/include/c++/14.1.1",
- "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu",
- "/usr/include/c++/14.1.1/backward",
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include",
- "/usr/local/include",
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed",
- "/usr/include"
- ],
- "linkDirectories" :
- [
- "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1",
- "/usr/lib",
- "/lib"
- ],
- "linkFrameworkDirectories" : [],
- "linkLibraries" :
- [
- "stdc++",
- "m",
- "gcc_s",
- "gcc",
- "c",
- "gcc_s",
- "gcc"
- ]
- },
- "path" : "/usr/bin/c++",
- "version" : "14.1.1"
- },
- "language" : "CXX",
- "sourceFileExtensions" :
- [
- "C",
- "M",
- "c++",
- "cc",
- "cpp",
- "cxx",
- "mm",
- "mpp",
- "CPP",
- "ixx",
- "cppm",
- "ccm",
- "cxxm",
- "c++m"
- ]
- }
- ],
- "version" :
- {
- "major" : 1,
- "minor" : 0
- }
-}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-85eb8df44f8ece363688.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-85eb8df44f8ece363688.json
new file mode 100644
index 0000000..ac6311e
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-85eb8df44f8ece363688.json
@@ -0,0 +1,93 @@
+{
+ "kind" : "toolchains",
+ "toolchains" :
+ [
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include"
+ ],
+ "linkDirectories" : [],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" : []
+ },
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc.exe",
+ "version" : "13.1.0"
+ },
+ "language" : "C",
+ "sourceFileExtensions" :
+ [
+ "c",
+ "m"
+ ]
+ },
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include"
+ ],
+ "linkDirectories" : [],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" : []
+ },
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/g++.exe",
+ "version" : "13.1.0"
+ },
+ "language" : "CXX",
+ "sourceFileExtensions" :
+ [
+ "C",
+ "M",
+ "c++",
+ "cc",
+ "cpp",
+ "cxx",
+ "mm",
+ "mpp",
+ "CPP",
+ "ixx",
+ "cppm",
+ "ccm",
+ "cxxm",
+ "c++m"
+ ]
+ },
+ {
+ "compiler" :
+ {
+ "implicit" : {},
+ "path" : "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/windres.exe"
+ },
+ "language" : "RC",
+ "sourceFileExtensions" :
+ [
+ "rc",
+ "RC"
+ ]
+ }
+ ],
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+}
diff --git a/cmake-build-debug/CMakeCache.txt b/cmake-build-debug/CMakeCache.txt
index 2fff3a5..f8f1041 100644
--- a/cmake-build-debug/CMakeCache.txt
+++ b/cmake-build-debug/CMakeCache.txt
@@ -1,6 +1,6 @@
# This is the CMakeCache file.
-# For build in directory: /home/ghazal/CLionProjects/NextFlick/cmake-build-debug
-# It was generated by CMake: /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cmake
+# For build in directory: c:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug
+# It was generated by CMake: C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
@@ -15,10 +15,10 @@
########################
//Path to a program.
-CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
+CMAKE_ADDR2LINE:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/addr2line.exe
//Path to a program.
-CMAKE_AR:FILEPATH=/usr/bin/ar
+CMAKE_AR:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ar.exe
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
@@ -28,15 +28,15 @@ CMAKE_BUILD_TYPE:STRING=Debug
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
//CXX compiler
-CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
+CMAKE_CXX_COMPILER:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/g++.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
-CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
+CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
-CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
@@ -53,16 +53,19 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+//Libraries linked by default with all C++ applications.
+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
+
//C compiler
-CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
+CMAKE_C_COMPILER:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
-CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
+CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
-CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
+CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
@@ -79,8 +82,11 @@ CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
+//Libraries linked by default with all C applications.
+CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
+
//Path to a program.
-CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
+CMAKE_DLLTOOL:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/dlltool.exe
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
@@ -97,20 +103,20 @@ CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
-//Enable/Disable output of compile commands during generation.
-CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
-
//Value Computed by CMake.
-CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/pkgRedirects
+CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/pkgRedirects
+
+//Convert GNU import libraries to MS format (requires Visual Studio)
+CMAKE_GNUtoMS:BOOL=OFF
//Install path prefix, prepended onto install directories.
-CMAKE_INSTALL_PREFIX:PATH=/usr/local
+CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/NextFlick
//Path to a program.
-CMAKE_LINKER:FILEPATH=/usr/bin/ld
+CMAKE_LINKER:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe
-//No help, variable specified on the command line.
-CMAKE_MAKE_PROGRAM:UNINITIALIZED=/home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja
+//make program
+CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe
//Flags used by the linker during the creation of modules during
// all build types.
@@ -133,13 +139,13 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
-CMAKE_NM:FILEPATH=/usr/bin/nm
+CMAKE_NM:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/nm.exe
//Path to a program.
-CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
+CMAKE_OBJCOPY:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/objcopy.exe
//Path to a program.
-CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
+CMAKE_OBJDUMP:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/objdump.exe
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
@@ -151,10 +157,28 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
CMAKE_PROJECT_NAME:STATIC=NextFlick
//Path to a program.
-CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
+CMAKE_RANLIB:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ranlib.exe
+
+//RC compiler
+CMAKE_RC_COMPILER:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/windres.exe
+
+//Flags for Windows Resource Compiler during all build types.
+CMAKE_RC_FLAGS:STRING=
+
+//Flags for Windows Resource Compiler during DEBUG builds.
+CMAKE_RC_FLAGS_DEBUG:STRING=
+
+//Flags for Windows Resource Compiler during MINSIZEREL builds.
+CMAKE_RC_FLAGS_MINSIZEREL:STRING=
+
+//Flags for Windows Resource Compiler during RELEASE builds.
+CMAKE_RC_FLAGS_RELEASE:STRING=
+
+//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
+CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
-CMAKE_READELF:FILEPATH=/usr/bin/readelf
+CMAKE_READELF:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/readelf.exe
//Flags used by the linker during the creation of shared libraries
// during all build types.
@@ -204,7 +228,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
-CMAKE_STRIP:FILEPATH=/usr/bin/strip
+CMAKE_STRIP:FILEPATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/strip.exe
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
@@ -216,13 +240,13 @@ CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
-NextFlick_BINARY_DIR:STATIC=/home/ghazal/CLionProjects/NextFlick/cmake-build-debug
+NextFlick_BINARY_DIR:STATIC=C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug
//Value Computed by CMake
NextFlick_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
-NextFlick_SOURCE_DIR:STATIC=/home/ghazal/CLionProjects/NextFlick
+NextFlick_SOURCE_DIR:STATIC=C:/Users/ZBook Fury/CLionProjects/NextFlick
########################
@@ -234,7 +258,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
-CMAKE_CACHEFILE_DIR:INTERNAL=/home/ghazal/CLionProjects/NextFlick/cmake-build-debug
+CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
@@ -242,11 +266,11 @@ CMAKE_CACHE_MINOR_VERSION:INTERNAL=30
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=5
//Path to CMake executable.
-CMAKE_COMMAND:INTERNAL=/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cmake
+CMAKE_COMMAND:INTERNAL=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe
//Path to cpack program executable.
-CMAKE_CPACK_COMMAND:INTERNAL=/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/cpack
+CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cpack.exe
//Path to ctest program executable.
-CMAKE_CTEST_COMMAND:INTERNAL=/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/bin/ctest
+CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
@@ -263,6 +287,8 @@ CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
@@ -279,10 +305,12 @@ CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Executable file format
-CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
@@ -293,12 +321,10 @@ CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
-//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
-CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
-CMAKE_GENERATOR:INTERNAL=Ninja
+CMAKE_GENERATOR:INTERNAL=MinGW Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
@@ -307,11 +333,11 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
-CMAKE_HOME_DIRECTORY:INTERNAL=/home/ghazal/CLionProjects/NextFlick
-//Install .so files without execute permission.
-CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
+CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/ZBook Fury/CLionProjects/NextFlick
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
@@ -334,10 +360,23 @@ CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_COMPILER
+CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_RC_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS
+CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
+CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
+CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
+CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
+CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
-CMAKE_ROOT:INTERNAL=/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30
+CMAKE_ROOT:INTERNAL=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
@@ -366,8 +405,6 @@ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-ADVANCED:INTERNAL=1
-//uname command
-CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//linker supports push/pop state
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake
index 77fc419..25022a8 100644
--- a/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake
+++ b/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake
@@ -1,7 +1,7 @@
-set(CMAKE_C_COMPILER "/usr/bin/cc")
+set(CMAKE_C_COMPILER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
-set(CMAKE_C_COMPILER_VERSION "14.1.1")
+set(CMAKE_C_COMPILER_VERSION "13.1.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
@@ -14,7 +14,7 @@ set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
-set(CMAKE_C_PLATFORM_ID "Linux")
+set(CMAKE_C_PLATFORM_ID "MinGW")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_C_SIMULATE_VERSION "")
@@ -22,16 +22,16 @@ set(CMAKE_C_SIMULATE_VERSION "")
-set(CMAKE_AR "/usr/bin/ar")
-set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
-set(CMAKE_RANLIB "/usr/bin/ranlib")
-set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
-set(CMAKE_LINKER "/usr/bin/ld")
+set(CMAKE_AR "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ar.exe")
+set(CMAKE_C_COMPILER_AR "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe")
+set(CMAKE_RANLIB "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ranlib.exe")
+set(CMAKE_C_COMPILER_RANLIB "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe")
+set(CMAKE_LINKER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
-set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld")
+set(CMAKE_C_COMPILER_LINKER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe")
set(CMAKE_C_COMPILER_LINKER_ID "GNU")
-set(CMAKE_C_COMPILER_LINKER_VERSION 2.42.0)
+set(CMAKE_C_COMPILER_LINKER_VERSION 2.40)
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU)
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
@@ -50,7 +50,7 @@ set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "8")
-set(CMAKE_C_COMPILER_ABI "ELF")
+set(CMAKE_C_COMPILER_ABI "")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
@@ -75,7 +75,7 @@ endif()
-set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed;/usr/include")
-set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
-set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib;/lib")
+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include")
+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake
index 5a8c9d0..7dd9425 100644
--- a/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake
+++ b/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake
@@ -1,22 +1,22 @@
-set(CMAKE_CXX_COMPILER "/usr/bin/c++")
+set(CMAKE_CXX_COMPILER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/g++.exe")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
-set(CMAKE_CXX_COMPILER_VERSION "14.1.1")
+set(CMAKE_CXX_COMPILER_VERSION "13.1.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
-set(CMAKE_CXX_STANDARD_LATEST "26")
-set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
+set(CMAKE_CXX_STANDARD_LATEST "23")
+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
-set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
+set(CMAKE_CXX26_COMPILE_FEATURES "")
-set(CMAKE_CXX_PLATFORM_ID "Linux")
+set(CMAKE_CXX_PLATFORM_ID "MinGW")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_CXX_SIMULATE_VERSION "")
@@ -24,16 +24,16 @@ set(CMAKE_CXX_SIMULATE_VERSION "")
-set(CMAKE_AR "/usr/bin/ar")
-set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
-set(CMAKE_RANLIB "/usr/bin/ranlib")
-set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
-set(CMAKE_LINKER "/usr/bin/ld")
+set(CMAKE_AR "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ar.exe")
+set(CMAKE_CXX_COMPILER_AR "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ar.exe")
+set(CMAKE_RANLIB "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ranlib.exe")
+set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc-ranlib.exe")
+set(CMAKE_LINKER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
-set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld")
+set(CMAKE_CXX_COMPILER_LINKER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe")
set(CMAKE_CXX_COMPILER_LINKER_ID "GNU")
-set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.42.0)
+set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.40)
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU)
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
@@ -62,7 +62,7 @@ set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
-set(CMAKE_CXX_COMPILER_ABI "ELF")
+set(CMAKE_CXX_COMPILER_ABI "")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
@@ -87,19 +87,15 @@ endif()
-set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/14.1.1;/usr/include/c++/14.1.1/x86_64-pc-linux-gnu;/usr/include/c++/14.1.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed;/usr/include")
-set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
-set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib;/lib")
+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include")
+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
### Imported target for C++23 standard library
-set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
-
-
-### Imported target for C++26 standard library
-set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support")
+set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: MinGW Makefiles")
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin
index 04c8c71..fbe3777 100755
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin and b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin
index d4115da..3196246 100755
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin and b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake
new file mode 100644
index 0000000..23b91e5
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake
@@ -0,0 +1,6 @@
+set(CMAKE_RC_COMPILER "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/windres.exe")
+set(CMAKE_RC_COMPILER_ARG1 "")
+set(CMAKE_RC_COMPILER_LOADED 1)
+set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
+set(CMAKE_RC_OUTPUT_EXTENSION .obj)
+set(CMAKE_RC_COMPILER_ENV_VAR "RC")
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake b/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake
index 01b4866..909db20 100644
--- a/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake
+++ b/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake
@@ -1,14 +1,14 @@
-set(CMAKE_HOST_SYSTEM "Linux-6.9.10-1-MANJARO")
-set(CMAKE_HOST_SYSTEM_NAME "Linux")
-set(CMAKE_HOST_SYSTEM_VERSION "6.9.10-1-MANJARO")
-set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
+set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
+set(CMAKE_HOST_SYSTEM_NAME "Windows")
+set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
-set(CMAKE_SYSTEM "Linux-6.9.10-1-MANJARO")
-set(CMAKE_SYSTEM_NAME "Linux")
-set(CMAKE_SYSTEM_VERSION "6.9.10-1-MANJARO")
-set(CMAKE_SYSTEM_PROCESSOR "x86_64")
+set(CMAKE_SYSTEM "Windows-10.0.19045")
+set(CMAKE_SYSTEM_NAME "Windows")
+set(CMAKE_SYSTEM_VERSION "10.0.19045")
+set(CMAKE_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_CROSSCOMPILING "FALSE")
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe
new file mode 100644
index 0000000..593e0ab
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.out b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.out
deleted file mode 100755
index 7559f73..0000000
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.out and /dev/null differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe
new file mode 100644
index 0000000..3e02630
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.out b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.out
deleted file mode 100755
index 3f6cf98..0000000
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.out and /dev/null differ
diff --git a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
index bac2528..15fca10 100644
--- a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
+++ b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
@@ -4,20 +4,20 @@ events:
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)"
- "CMakeLists.txt:2 (project)"
message: |
- The system is: Linux - 6.9.10-1-MANJARO - x86_64
+ The system is: Windows - 10.0.19045 - AMD64
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
- "CMakeLists.txt:2 (project)"
message: |
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
- Compiler: /usr/bin/cc
+ Compiler: C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/gcc.exe
Build flags:
Id flags:
@@ -25,21 +25,21 @@ events:
0
- Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
+ Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe"
The C compiler identification is GNU, found in:
- /home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.out
+ C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
- "CMakeLists.txt:2 (project)"
message: |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
- Compiler: /usr/bin/c++
+ Compiler: C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/g++.exe
Build flags:
Id flags:
@@ -47,22 +47,22 @@ events:
0
- Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
+ Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe"
The CXX compiler identification is GNU, found in:
- /home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.out
+ C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe
-
kind: "try_compile-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
checks:
- "Detecting C compiler ABI info"
directories:
- source: "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-21O892"
- binary: "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-21O892"
+ source: "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4"
+ binary: "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4"
cmakeVariables:
CMAKE_C_FLAGS: ""
CMAKE_C_FLAGS_DEBUG: "-g"
@@ -71,215 +71,204 @@ events:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
- Change Dir: '/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-21O892'
+ Change Dir: 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4'
- Run Build Command(s): /home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja -v cmTC_98c34
- [1/2] /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -c /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c
+ Run Build Command(s): "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe" -E env VERBOSE=1 C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_922d9/fast
+ C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_922d9.dir\\build.make CMakeFiles/cmTC_922d9.dir/build
+ mingw32-make[1]: Entering directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4'
+ Building C object CMakeFiles/cmTC_922d9.dir/CMakeCCompilerABI.c.obj
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj -c "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCCompilerABI.c"
Using built-in specs.
- COLLECT_GCC=/usr/bin/cc
- Target: x86_64-pc-linux-gnu
- Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
+ COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe
+ Target: x86_64-w64-mingw32
+ Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends
Thread model: posix
- Supported LTO compression algorithms: zlib zstd
- gcc version 14.1.1 20240522 (GCC)
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/'
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/cc1 -quiet -v /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_98c34.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -o /tmp/cczOYZPQ.s
- GNU C17 (GCC) version 14.1.1 20240522 (x86_64-pc-linux-gnu)
- compiled by GNU C version 14.1.1 20240522, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
-
+ Supported LTO compression algorithms: zlib
+ gcc version 13.1.0 (GCC)
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\'
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles\\cmTC_922d9.dir\\ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccViPUGH.s
+ GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32)
+ compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"
+ ignoring nonexistent directory "/win/include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"
+ ignoring nonexistent directory "/mingw/include"
#include "..." search starts here:
#include <...> search starts here:
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include
- /usr/local/include
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed
- /usr/include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include
End of search list.
- Compiler executable checksum: 555662f6736d29692f90e28e958fc3de
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/'
- as -v --64 -o CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o /tmp/cczOYZPQ.s
- GNU assembler version 2.42.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.42.0
- COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/
- LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.'
- [2/2] : && /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -o cmTC_98c34 && :
+ Compiler executable checksum: 2aa4fcf5c9208168c5e2d38a58fc2a97
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\'
+ as -v -o CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccViPUGH.s
+ GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40
+ COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/
+ LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.'
+ Linking C executable cmTC_922d9.exe
+ "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_922d9.dir\\link.txt --verbose=1
+ "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E rm -f CMakeFiles\\cmTC_922d9.dir/objects.a
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\ar.exe qc CMakeFiles\\cmTC_922d9.dir/objects.a @CMakeFiles\\cmTC_922d9.dir\\objects1.rsp
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe -v -Wl,-v -Wl,--whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a -Wl,--no-whole-archive -o cmTC_922d9.exe -Wl,--out-implib,libcmTC_922d9.dll.a -Wl,--major-image-version,0,--minor-image-version,0
Using built-in specs.
- COLLECT_GCC=/usr/bin/cc
- COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper
- Target: x86_64-pc-linux-gnu
- Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
+ COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe
+ COLLECT_LTO_WRAPPER=C:/Users/ZBook\\ Fury/AppData/Local/JetBrains/CLion\\ 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe
+ Target: x86_64-w64-mingw32
+ Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends
Thread model: posix
- Supported LTO compression algorithms: zlib zstd
- gcc version 14.1.1 20240522 (GCC)
- COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/
- LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_98c34' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_98c34.'
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxaYp54.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_98c34 /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o
- collect2 version 14.1.1 20240522
- /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxaYp54.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_98c34 /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o
- GNU ld (GNU Binutils) 2.42.0
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_98c34' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_98c34.'
+ Supported LTO compression algorithms: zlib
+ gcc version 13.1.0 (GCC)
+ COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/
+ LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_922d9.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_922d9.'
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_922d9.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a --no-whole-archive --out-implib libcmTC_922d9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ collect2 version 13.1.0
+ C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_922d9.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a --no-whole-archive --out-implib libcmTC_922d9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ GNU ld (GNU Binutils) 2.40
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_922d9.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_922d9.'
+ mingw32-make[1]: Leaving directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4'
exitCode: 0
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed C implicit include dir info: rv=done
found start of include info
found start of implicit include info
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- add: [/usr/local/include]
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- add: [/usr/include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include]
end of search list found
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- collapse include dir [/usr/local/include] ==> [/usr/local/include]
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- collapse include dir [/usr/include] ==> [/usr/include]
- implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed;/usr/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include]
+ implicit include dirs: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include]
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed C implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
- ignore line: [Change Dir: '/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-21O892']
+ ignore line: [Change Dir: 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4']
ignore line: []
- ignore line: [Run Build Command(s): /home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja -v cmTC_98c34]
- ignore line: [[1/2] /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -c /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c]
+ ignore line: [Run Build Command(s): "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe" -E env VERBOSE=1 C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_922d9/fast]
+ ignore line: [C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_922d9.dir\\build.make CMakeFiles/cmTC_922d9.dir/build]
+ ignore line: [mingw32-make[1]: Entering directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4']
+ ignore line: [Building C object CMakeFiles/cmTC_922d9.dir/CMakeCCompilerABI.c.obj]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj -c "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCCompilerABI.c"]
ignore line: [Using built-in specs.]
- ignore line: [COLLECT_GCC=/usr/bin/cc]
- ignore line: [Target: x86_64-pc-linux-gnu]
- ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
+ ignore line: [COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe]
+ ignore line: [Target: x86_64-w64-mingw32]
+ ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends]
ignore line: [Thread model: posix]
- ignore line: [Supported LTO compression algorithms: zlib zstd]
- ignore line: [gcc version 14.1.1 20240522 (GCC) ]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/']
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/cc1 -quiet -v /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_98c34.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -o /tmp/cczOYZPQ.s]
- ignore line: [GNU C17 (GCC) version 14.1.1 20240522 (x86_64-pc-linux-gnu)]
- ignore line: [ compiled by GNU C version 14.1.1 20240522 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
- ignore line: []
+ ignore line: [Supported LTO compression algorithms: zlib]
+ ignore line: [gcc version 13.1.0 (GCC) ]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\']
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles\\cmTC_922d9.dir\\ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccViPUGH.s]
+ ignore line: [GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32)]
+ ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none]
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"]
+ ignore line: [ignoring nonexistent directory "/win/include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"]
+ ignore line: [ignoring nonexistent directory "/mingw/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- ignore line: [ /usr/local/include]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- ignore line: [ /usr/include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include]
ignore line: [End of search list.]
- ignore line: [Compiler executable checksum: 555662f6736d29692f90e28e958fc3de]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/']
- ignore line: [ as -v --64 -o CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o /tmp/cczOYZPQ.s]
- ignore line: [GNU assembler version 2.42.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.42.0]
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.']
- ignore line: [[2/2] : && /usr/bin/cc -v -Wl -v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -o cmTC_98c34 && :]
+ ignore line: [Compiler executable checksum: 2aa4fcf5c9208168c5e2d38a58fc2a97]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\']
+ ignore line: [ as -v -o CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccViPUGH.s]
+ ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40]
+ ignore line: [COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/]
+ ignore line: [LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_922d9.dir\\CMakeCCompilerABI.c.']
+ ignore line: [Linking C executable cmTC_922d9.exe]
+ ignore line: ["C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_922d9.dir\\link.txt --verbose=1]
+ ignore line: ["C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E rm -f CMakeFiles\\cmTC_922d9.dir/objects.a]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\ar.exe qc CMakeFiles\\cmTC_922d9.dir/objects.a @CMakeFiles\\cmTC_922d9.dir\\objects1.rsp]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe -v -Wl -v -Wl --whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a -Wl --no-whole-archive -o cmTC_922d9.exe -Wl --out-implib libcmTC_922d9.dll.a -Wl --major-image-version 0 --minor-image-version 0]
ignore line: [Using built-in specs.]
- ignore line: [COLLECT_GCC=/usr/bin/cc]
- ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper]
- ignore line: [Target: x86_64-pc-linux-gnu]
- ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
+ ignore line: [COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\gcc.exe]
+ ignore line: [COLLECT_LTO_WRAPPER=C:/Users/ZBook\\ Fury/AppData/Local/JetBrains/CLion\\ 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe]
+ ignore line: [Target: x86_64-w64-mingw32]
+ ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends]
ignore line: [Thread model: posix]
- ignore line: [Supported LTO compression algorithms: zlib zstd]
- ignore line: [gcc version 14.1.1 20240522 (GCC) ]
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_98c34' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_98c34.']
- link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxaYp54.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_98c34 /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2] ==> ignore
- arg [-plugin] ==> ignore
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so] ==> ignore
- arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper] ==> ignore
- arg [-plugin-opt=-fresolution=/tmp/ccxaYp54.res] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
- arg [-plugin-opt=-pass-through=-lc] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
- arg [--build-id] ==> ignore
- arg [--eh-frame-hdr] ==> ignore
- arg [--hash-style=gnu] ==> ignore
- arg [-m] ==> ignore
- arg [elf_x86_64] ==> ignore
- arg [-dynamic-linker] ==> ignore
- arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
- arg [-pie] ==> ignore
- arg [-o] ==> ignore
- arg [cmTC_98c34] ==> ignore
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib]
- arg [-L/lib/../lib] ==> dir [/lib/../lib]
- arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..]
- arg [-v] ==> ignore
- arg [CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o] ==> ignore
- arg [-lgcc] ==> lib [gcc]
- arg [--push-state] ==> ignore
- arg [--as-needed] ==> ignore
- arg [-lgcc_s] ==> lib [gcc_s]
- arg [--pop-state] ==> ignore
- arg [-lc] ==> lib [c]
- arg [-lgcc] ==> lib [gcc]
- arg [--push-state] ==> ignore
- arg [--as-needed] ==> ignore
- arg [-lgcc_s] ==> lib [gcc_s]
- arg [--pop-state] ==> ignore
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- ignore line: [collect2 version 14.1.1 20240522]
- ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxaYp54.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_98c34 /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_98c34.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- linker tool for 'C': /usr/bin/ld
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o]
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o]
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib] ==> [/usr/lib]
- collapse library dir [/lib/../lib] ==> [/lib]
- collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..] ==> [/usr/lib]
- implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
- implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o;/usr/lib/crtn.o]
- implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib;/lib]
+ ignore line: [Supported LTO compression algorithms: zlib]
+ ignore line: [gcc version 13.1.0 (GCC) ]
+ ignore line: [COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/]
+ ignore line: [LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_922d9.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_922d9.']
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_922d9.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a --no-whole-archive --out-implib libcmTC_922d9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [collect2 version 13.1.0]
+ ignore line: [C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_922d9.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_922d9.dir/objects.a --no-whole-archive --out-implib libcmTC_922d9.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [GNU ld (GNU Binutils) 2.40]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_922d9.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_922d9.']
+ ignore line: [mingw32-make[1]: Leaving directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bimkm4']
+ ignore line: []
+ ignore line: []
+ linker tool for 'C': C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe
+ implicit libs: []
+ implicit objs: []
+ implicit dirs: []
implicit fwks: []
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
- Running the C compiler's linker: "/usr/bin/ld" "-v"
- GNU ld (GNU Binutils) 2.42.0
+ Running the C compiler's linker: "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe" "-v"
+ GNU ld (GNU Binutils) 2.40
-
kind: "try_compile-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
checks:
- "Detecting CXX compiler ABI info"
directories:
- source: "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ga1P6n"
- binary: "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ga1P6n"
+ source: "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k"
+ binary: "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k"
cmakeVariables:
CMAKE_CXX_FLAGS: ""
CMAKE_CXX_FLAGS_DEBUG: "-g"
@@ -289,210 +278,209 @@ events:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
- Change Dir: '/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ga1P6n'
+ Change Dir: 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k'
- Run Build Command(s): /home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja -v cmTC_b089b
- [1/2] /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -c /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
+ Run Build Command(s): "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe" -E env VERBOSE=1 C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_6af13/fast
+ C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_6af13.dir\\build.make CMakeFiles/cmTC_6af13.dir/build
+ mingw32-make[1]: Entering directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k'
+ Building CXX object CMakeFiles/cmTC_6af13.dir/CMakeCXXCompilerABI.cpp.obj
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCXXCompilerABI.cpp"
Using built-in specs.
- COLLECT_GCC=/usr/bin/c++
- Target: x86_64-pc-linux-gnu
- Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
+ COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE
+ Target: x86_64-w64-mingw32
+ Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends
Thread model: posix
- Supported LTO compression algorithms: zlib zstd
- gcc version 14.1.1 20240522 (GCC)
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/'
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/cc1plus -quiet -v -D_GNU_SOURCE /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b089b.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -o /tmp/ccyiU2cL.s
- GNU C++17 (GCC) version 14.1.1 20240522 (x86_64-pc-linux-gnu)
- compiled by GNU C version 14.1.1 20240522, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP
-
+ Supported LTO compression algorithms: zlib
+ gcc version 13.1.0 (GCC)
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\'
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles\\cmTC_6af13.dir\\ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccFKAjTa.s
+ GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32)
+ compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
- ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"
+ ignoring nonexistent directory "/win/include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../include"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"
+ ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"
+ ignoring nonexistent directory "/mingw/include"
#include "..." search starts here:
#include <...> search starts here:
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include
- /usr/local/include
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed
- /usr/include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include
End of search list.
- Compiler executable checksum: 29a4cbac9a82c8094a8662004ee682d4
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/'
- as -v --64 -o CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccyiU2cL.s
- GNU assembler version 2.42.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.42.0
- COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/
- LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.'
- [2/2] : && /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b089b && :
+ Compiler executable checksum: e75de627edc3c57e31324b930b15b056
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\'
+ as -v -o CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccFKAjTa.s
+ GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40
+ COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/
+ LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.'
+ Linking CXX executable cmTC_6af13.exe
+ "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_6af13.dir\\link.txt --verbose=1
+ "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E rm -f CMakeFiles\\cmTC_6af13.dir/objects.a
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\ar.exe qc CMakeFiles\\cmTC_6af13.dir/objects.a @CMakeFiles\\cmTC_6af13.dir\\objects1.rsp
+ C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE -v -Wl,-v -Wl,--whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a -Wl,--no-whole-archive -o cmTC_6af13.exe -Wl,--out-implib,libcmTC_6af13.dll.a -Wl,--major-image-version,0,--minor-image-version,0
Using built-in specs.
- COLLECT_GCC=/usr/bin/c++
- COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper
- Target: x86_64-pc-linux-gnu
- Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
+ COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE
+ COLLECT_LTO_WRAPPER=C:/Users/ZBook\\ Fury/AppData/Local/JetBrains/CLion\\ 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe
+ Target: x86_64-w64-mingw32
+ Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends
Thread model: posix
- Supported LTO compression algorithms: zlib zstd
- gcc version 14.1.1 20240522 (GCC)
- COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/
- LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b089b' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_b089b.'
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccee1hAe.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_b089b /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o
- collect2 version 14.1.1 20240522
- /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccee1hAe.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_b089b /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o
- GNU ld (GNU Binutils) 2.42.0
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b089b' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_b089b.'
+ Supported LTO compression algorithms: zlib
+ gcc version 13.1.0 (GCC)
+ COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/
+ LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6af13.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_6af13.'
+ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_6af13.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a --no-whole-archive --out-implib libcmTC_6af13.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ collect2 version 13.1.0
+ C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_6af13.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a --no-whole-archive --out-implib libcmTC_6af13.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ GNU ld (GNU Binutils) 2.40
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6af13.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_6af13.'
+ mingw32-make[1]: Leaving directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k'
exitCode: 0
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed CXX implicit include dir info: rv=done
found start of include info
found start of implicit include info
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1]
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu]
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward]
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- add: [/usr/local/include]
- add: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- add: [/usr/include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ add: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include]
end of search list found
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1] ==> [/usr/include/c++/14.1.1]
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu] ==> [/usr/include/c++/14.1.1/x86_64-pc-linux-gnu]
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward] ==> [/usr/include/c++/14.1.1/backward]
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- collapse include dir [/usr/local/include] ==> [/usr/local/include]
- collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- collapse include dir [/usr/include] ==> [/usr/include]
- implicit include dirs: [/usr/include/c++/14.1.1;/usr/include/c++/14.1.1/x86_64-pc-linux-gnu;/usr/include/c++/14.1.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed;/usr/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ collapse include dir [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include]
+ implicit include dirs: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/include;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/x86_64-w64-mingw32/include]
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
Parsed CXX implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
- ignore line: [Change Dir: '/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ga1P6n']
+ ignore line: [Change Dir: 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k']
ignore line: []
- ignore line: [Run Build Command(s): /home/ghazal/Downloads/clion-2024.3/bin/ninja/linux/x64/ninja -v cmTC_b089b]
- ignore line: [[1/2] /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -c /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
+ ignore line: [Run Build Command(s): "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/bin/cmake.exe" -E env VERBOSE=1 C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f Makefile cmTC_6af13/fast]
+ ignore line: [C:/Users/ZBOOKF~1/AppData/Local/JETBRA~1/CLION2~1.2/bin/mingw/bin/mingw32-make.exe -f CMakeFiles\\cmTC_6af13.dir\\build.make CMakeFiles/cmTC_6af13.dir/build]
+ ignore line: [mingw32-make[1]: Entering directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k']
+ ignore line: [Building CXX object CMakeFiles/cmTC_6af13.dir/CMakeCXXCompilerABI.cpp.obj]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj -c "C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCXXCompilerABI.cpp"]
ignore line: [Using built-in specs.]
- ignore line: [COLLECT_GCC=/usr/bin/c++]
- ignore line: [Target: x86_64-pc-linux-gnu]
- ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
+ ignore line: [COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE]
+ ignore line: [Target: x86_64-w64-mingw32]
+ ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends]
ignore line: [Thread model: posix]
- ignore line: [Supported LTO compression algorithms: zlib zstd]
- ignore line: [gcc version 14.1.1 20240522 (GCC) ]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/']
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/cc1plus -quiet -v -D_GNU_SOURCE /home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b089b.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -o /tmp/ccyiU2cL.s]
- ignore line: [GNU C++17 (GCC) version 14.1.1 20240522 (x86_64-pc-linux-gnu)]
- ignore line: [ compiled by GNU C version 14.1.1 20240522 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP]
- ignore line: []
+ ignore line: [Supported LTO compression algorithms: zlib]
+ ignore line: [gcc version 13.1.0 (GCC) ]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\']
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\share\\cmake-3.30\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles\\cmTC_6af13.dir\\ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccFKAjTa.s]
+ ignore line: [GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32)]
+ ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none]
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
- ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"]
+ ignore line: [ignoring nonexistent directory "/win/include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../include"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"]
+ ignore line: [ignoring duplicate directory "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"]
+ ignore line: [ignoring nonexistent directory "/mingw/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include]
- ignore line: [ /usr/local/include]
- ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include-fixed]
- ignore line: [ /usr/include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed]
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include]
ignore line: [End of search list.]
- ignore line: [Compiler executable checksum: 29a4cbac9a82c8094a8662004ee682d4]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/']
- ignore line: [ as -v --64 -o CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccyiU2cL.s]
- ignore line: [GNU assembler version 2.42.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.42.0]
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.']
- ignore line: [[2/2] : && /usr/bin/c++ -v -Wl -v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b089b && :]
+ ignore line: [Compiler executable checksum: e75de627edc3c57e31324b930b15b056]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\']
+ ignore line: [ as -v -o CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\ZBOOKF~1\\AppData\\Local\\Temp\\ccFKAjTa.s]
+ ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40]
+ ignore line: [COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/]
+ ignore line: [LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles\\cmTC_6af13.dir\\CMakeCXXCompilerABI.cpp.']
+ ignore line: [Linking CXX executable cmTC_6af13.exe]
+ ignore line: ["C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_6af13.dir\\link.txt --verbose=1]
+ ignore line: ["C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E rm -f CMakeFiles\\cmTC_6af13.dir/objects.a]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\ar.exe qc CMakeFiles\\cmTC_6af13.dir/objects.a @CMakeFiles\\cmTC_6af13.dir\\objects1.rsp]
+ ignore line: [C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE -v -Wl -v -Wl --whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a -Wl --no-whole-archive -o cmTC_6af13.exe -Wl --out-implib libcmTC_6af13.dll.a -Wl --major-image-version 0 --minor-image-version 0]
ignore line: [Using built-in specs.]
- ignore line: [COLLECT_GCC=/usr/bin/c++]
- ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper]
- ignore line: [Target: x86_64-pc-linux-gnu]
- ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
+ ignore line: [COLLECT_GCC=C:\\Users\\ZBOOKF~1\\AppData\\Local\\JETBRA~1\\CLION2~1.2\\bin\\mingw\\bin\\G__~1.EXE]
+ ignore line: [COLLECT_LTO_WRAPPER=C:/Users/ZBook\\ Fury/AppData/Local/JetBrains/CLion\\ 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe]
+ ignore line: [Target: x86_64-w64-mingw32]
+ ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends]
ignore line: [Thread model: posix]
- ignore line: [Supported LTO compression algorithms: zlib zstd]
- ignore line: [gcc version 14.1.1 20240522 (GCC) ]
- ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
- ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../:/lib/:/usr/lib/]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b089b' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_b089b.']
- link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccee1hAe.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_b089b /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/collect2] ==> ignore
- arg [-plugin] ==> ignore
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so] ==> ignore
- arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper] ==> ignore
- arg [-plugin-opt=-fresolution=/tmp/ccee1hAe.res] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
- arg [-plugin-opt=-pass-through=-lc] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
- arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
- arg [--build-id] ==> ignore
- arg [--eh-frame-hdr] ==> ignore
- arg [--hash-style=gnu] ==> ignore
- arg [-m] ==> ignore
- arg [elf_x86_64] ==> ignore
- arg [-dynamic-linker] ==> ignore
- arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
- arg [-pie] ==> ignore
- arg [-o] ==> ignore
- arg [cmTC_b089b] ==> ignore
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib]
- arg [-L/lib/../lib] ==> dir [/lib/../lib]
- arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
- arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..]
- arg [-v] ==> ignore
- arg [CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
- arg [-lstdc++] ==> lib [stdc++]
- arg [-lm] ==> lib [m]
- arg [-lgcc_s] ==> lib [gcc_s]
- arg [-lgcc] ==> lib [gcc]
- arg [-lc] ==> lib [c]
- arg [-lgcc_s] ==> lib [gcc_s]
- arg [-lgcc] ==> lib [gcc]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o]
- arg [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- ignore line: [collect2 version 14.1.1 20240522]
- ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccee1hAe.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_b089b /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../.. -v CMakeFiles/cmTC_b089b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o]
- linker tool for 'CXX': /usr/bin/ld
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o]
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o]
- collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib] ==> [/usr/lib]
- collapse library dir [/lib/../lib] ==> [/lib]
- collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
- collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/../../..] ==> [/usr/lib]
- implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
- implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o;/usr/lib/crtn.o]
- implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib;/lib]
+ ignore line: [Supported LTO compression algorithms: zlib]
+ ignore line: [gcc version 13.1.0 (GCC) ]
+ ignore line: [COMPILER_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/]
+ ignore line: [LIBRARY_PATH=C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
+ ignore line: [C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6af13.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_6af13.']
+ ignore line: [ C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_6af13.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a --no-whole-archive --out-implib libcmTC_6af13.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [collect2 version 13.1.0]
+ ignore line: [C:\\Users\\ZBook Fury\\AppData\\Local\\JetBrains\\CLion 2024.3.2\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_6af13.exe C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v --whole-archive CMakeFiles\\cmTC_6af13.dir/objects.a --no-whole-archive --out-implib libcmTC_6af13.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [GNU ld (GNU Binutils) 2.40]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6af13.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_6af13.']
+ ignore line: [mingw32-make[1]: Leaving directory 'C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8i081k']
+ ignore line: []
+ ignore line: []
+ linker tool for 'CXX': C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe
+ implicit libs: []
+ implicit objs: []
+ implicit dirs: []
implicit fwks: []
-
kind: "message-v1"
backtrace:
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
- - "/home/ghazal/Downloads/clion-2024.3/bin/cmake/linux/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
+ - "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
- "CMakeLists.txt:2 (project)"
message: |
- Running the CXX compiler's linker: "/usr/bin/ld" "-v"
- GNU ld (GNU Binutils) 2.42.0
+ Running the CXX compiler's linker: "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/mingw/bin/ld.exe" "-v"
+ GNU ld (GNU Binutils) 2.40
...
diff --git a/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000..6732aff
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "MinGW Makefiles" Generator, CMake Version 3.30
+
+# Relative path conversion top directories.
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/ZBook Fury/CLionProjects/NextFlick")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/ZBook Fury/CLionProjects/NextFlick/cmake-build-debug")
+
+# Force unix paths in dependencies.
+set(CMAKE_FORCE_UNIX_PATHS 1)
+
+
+# The C and CXX include file regular expressions for this directory.
+set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
+set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
+set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
+set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
diff --git a/cmake-build-debug/CMakeFiles/Makefile.cmake b/cmake-build-debug/CMakeFiles/Makefile.cmake
new file mode 100644
index 0000000..87d36f0
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/Makefile.cmake
@@ -0,0 +1,53 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "MinGW Makefiles" Generator, CMake Version 3.30
+
+# The generator used is:
+set(CMAKE_DEPENDS_GENERATOR "MinGW Makefiles")
+
+# The top level Makefile was generated from the following files:
+set(CMAKE_MAKEFILE_DEPENDS
+ "CMakeCache.txt"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake"
+ "C:/Users/ZBook Fury/AppData/Local/JetBrains/CLion 2024.3.2/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake"
+ "C:/Users/ZBook Fury/CLionProjects/NextFlick/CMakeLists.txt"
+ "CMakeFiles/3.30.5/CMakeCCompiler.cmake"
+ "CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
+ "CMakeFiles/3.30.5/CMakeRCCompiler.cmake"
+ "CMakeFiles/3.30.5/CMakeSystem.cmake"
+ )
+
+# The corresponding makefile is:
+set(CMAKE_MAKEFILE_OUTPUTS
+ "Makefile"
+ "CMakeFiles/cmake.check_cache"
+ )
+
+# Byproducts of CMake generate step:
+set(CMAKE_MAKEFILE_PRODUCTS
+ "CMakeFiles/CMakeDirectoryInformation.cmake"
+ )
+
+# Dependency information for all targets:
+set(CMAKE_DEPEND_INFO_FILES
+ "CMakeFiles/NextFlick.dir/DependInfo.cmake"
+ )
diff --git a/cmake-build-debug/CMakeFiles/Makefile2 b/cmake-build-debug/CMakeFiles/Makefile2
new file mode 100644
index 0000000..dcee7c1
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/Makefile2
@@ -0,0 +1,111 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "MinGW Makefiles" Generator, CMake Version 3.30
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+SHELL = cmd.exe
+
+# The CMake executable.
+CMAKE_COMMAND = "C:\Users\ZBook Fury\AppData\Local\JetBrains\CLion 2024.3.2\bin\cmake\win\x64\bin\cmake.exe"
+
+# The command to remove a file.
+RM = "C:\Users\ZBook Fury\AppData\Local\JetBrains\CLion 2024.3.2\bin\cmake\win\x64\bin\cmake.exe" -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = "C:\Users\ZBook Fury\CLionProjects\NextFlick"
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = "C:\Users\ZBook Fury\CLionProjects\NextFlick\cmake-build-debug"
+
+#=============================================================================
+# Directory level rules for the build root directory
+
+# The main recursive "all" target.
+all: CMakeFiles/NextFlick.dir/all
+.PHONY : all
+
+# The main recursive "preinstall" target.
+preinstall:
+.PHONY : preinstall
+
+# The main recursive "clean" target.
+clean: CMakeFiles/NextFlick.dir/clean
+.PHONY : clean
+
+#=============================================================================
+# Target rules for target CMakeFiles/NextFlick.dir
+
+# All Build rule for target.
+CMakeFiles/NextFlick.dir/all:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles\NextFlick.dir\build.make CMakeFiles/NextFlick.dir/depend
+ $(MAKE) $(MAKESILENT) -f CMakeFiles\NextFlick.dir\build.make CMakeFiles/NextFlick.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir="C:\Users\ZBook Fury\CLionProjects\NextFlick\cmake-build-debug\CMakeFiles" --progress-num=1,2,3,4,5 "Built target NextFlick"
+.PHONY : CMakeFiles/NextFlick.dir/all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/NextFlick.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start "C:\Users\ZBook Fury\CLionProjects\NextFlick\cmake-build-debug\CMakeFiles" 5
+ $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 CMakeFiles/NextFlick.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start "C:\Users\ZBook Fury\CLionProjects\NextFlick\cmake-build-debug\CMakeFiles" 0
+.PHONY : CMakeFiles/NextFlick.dir/rule
+
+# Convenience name for target.
+NextFlick: CMakeFiles/NextFlick.dir/rule
+.PHONY : NextFlick
+
+# clean rule for target.
+CMakeFiles/NextFlick.dir/clean:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles\NextFlick.dir\build.make CMakeFiles/NextFlick.dir/clean
+.PHONY : CMakeFiles/NextFlick.dir/clean
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXX.dd b/cmake-build-debug/CMakeFiles/NextFlick.dir/CXX.dd
deleted file mode 100644
index cdf8b1c..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXX.dd
+++ /dev/null
@@ -1,7 +0,0 @@
-ninja_dyndep_version = 1.0
-build CMakeFiles/NextFlick.dir/main.cpp.o: dyndep
-
-build CMakeFiles/NextFlick.dir/users.cpp.o: dyndep
-
-build CMakeFiles/NextFlick.dir/admin.cpp.o: dyndep
-
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXDependInfo.json b/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXDependInfo.json
deleted file mode 100644
index 350abe1..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXDependInfo.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "bmi-installation" : null,
- "compiler-frontend-variant" : "GNU",
- "compiler-id" : "GNU",
- "compiler-simulate-id" : "",
- "config" : "Debug",
- "cxx-modules" : {},
- "dir-cur-bld" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug",
- "dir-cur-src" : "/home/ghazal/CLionProjects/NextFlick",
- "dir-top-bld" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug",
- "dir-top-src" : "/home/ghazal/CLionProjects/NextFlick",
- "exports" : [],
- "forward-modules-from-target-dirs" : [],
- "include-dirs" : [],
- "language" : "CXX",
- "linked-target-dirs" : [],
- "module-dir" : "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug/CMakeFiles/NextFlick.dir"
-}
\ No newline at end of file
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXModules.json b/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXModules.json
deleted file mode 100644
index b5d5868..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/CXXModules.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "modules" : {},
- "references" : {},
- "usages" : {}
-}
\ No newline at end of file
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj b/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj
new file mode 100644
index 0000000..6fa4bad
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj differ
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj.d b/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj.d
new file mode 100644
index 0000000..ab57c60
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj.d
@@ -0,0 +1,188 @@
+CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj: \
+ C:\Users\ZBook\ Fury\CLionProjects\NextFlick\CompressedTrie.cpp \
+ C:\Users\ZBook\ Fury\CLionProjects\NextFlick\CompressedTrie.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iostream \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/pstl_config.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ostream \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ios \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/wchar.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/corecrt.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_mingw.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_mingw_mac.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_mingw_secapi.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/vadefs.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_mingw_off_t.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_mingw_stat64.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/swprintf.inl \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/stddef.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/crtdefs.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/concepts \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/iterator_concepts.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ranges_cmp.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/locale.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/stdio.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/ctype.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/pthread.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/errno.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sys/types.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/process.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/corecrt_startup.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/limits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/signal.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/pthread_signal.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/time.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sys/timeb.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/_timeval.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/pthread_time.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/pthread_compat.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/pthread_unistd.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ranges_base.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/max_size_type.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numbers \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/stdlib.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/malloc.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/mm_malloc.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ranges_util.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_ios.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_facets.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwctype \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/wctype.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/ctype_base.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/ctype_inline.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_facets.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_ios.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/istream \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/istream.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \
+ C:\Users\ZBook\ Fury\CLionProjects\NextFlick\Media.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/x86_64-w64-mingw32/include/stdint.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_wait.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_mutex.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ranges_uninitialized.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ranges_algobase.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \
+ C:/Users/ZBook\ Fury/AppData/Local/JetBrains/CLion\ 2024.3.2/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/NextFlick.dir/DependInfo.cmake
new file mode 100644
index 0000000..c1be26b
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/NextFlick.dir/DependInfo.cmake
@@ -0,0 +1,26 @@
+
+# Consider dependencies only in project.
+set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
+
+# The set of languages for which implicit dependencies are needed:
+set(CMAKE_DEPENDS_LANGUAGES
+ )
+
+# The set of dependency files which are needed:
+set(CMAKE_DEPENDS_DEPENDENCY_FILES
+ "C:/Users/ZBook Fury/CLionProjects/NextFlick/CompressedTrie.cpp" "CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj" "gcc" "CMakeFiles/NextFlick.dir/CompressedTrie.cpp.obj.d"
+ "C:/Users/ZBook Fury/CLionProjects/NextFlick/admin.cpp" "CMakeFiles/NextFlick.dir/admin.cpp.obj" "gcc" "CMakeFiles/NextFlick.dir/admin.cpp.obj.d"
+ "C:/Users/ZBook Fury/CLionProjects/NextFlick/main.cpp" "CMakeFiles/NextFlick.dir/main.cpp.obj" "gcc" "CMakeFiles/NextFlick.dir/main.cpp.obj.d"
+ "C:/Users/ZBook Fury/CLionProjects/NextFlick/users.cpp" "CMakeFiles/NextFlick.dir/users.cpp.obj" "gcc" "CMakeFiles/NextFlick.dir/users.cpp.obj.d"
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
+ )
+
+# Fortran module output directory.
+set(CMAKE_Fortran_TARGET_MODULE_DIR "")
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.ddi b/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.ddi
deleted file mode 100644
index 35deb6f..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.ddi
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-"rules": [
-{
-"primary-output": "CMakeFiles/NextFlick.dir/admin.cpp.o",
-"requires": [
-]
-}
-],
-"version": 0,
-"revision": 0
-}
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o b/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o
deleted file mode 100644
index eac38bf..0000000
Binary files a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o and /dev/null differ
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi b/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi
deleted file mode 100644
index 35deb6f..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-"rules": [
-{
-"primary-output": "CMakeFiles/NextFlick.dir/admin.cpp.o",
-"requires": [
-]
-}
-],
-"version": 0,
-"revision": 0
-}
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.d b/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.d
deleted file mode 100644
index 061230a..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.d
+++ /dev/null
@@ -1,146 +0,0 @@
-CMakeFiles/NextFlick.dir/admin.cpp.o.ddi: \
- /home/ghazal/CLionProjects/NextFlick/admin.cpp \
- /usr/include/stdc-predef.h /home/ghazal/CLionProjects/NextFlick/admin.h \
- /usr/include/c++/14.1.1/iostream \
- /usr/include/c++/14.1.1/bits/requires_hosted.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \
- /usr/include/features.h /usr/include/features-time64.h \
- /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
- /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
- /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
- /usr/include/c++/14.1.1/pstl/pstl_config.h \
- /usr/include/c++/14.1.1/ostream /usr/include/c++/14.1.1/ios \
- /usr/include/c++/14.1.1/iosfwd /usr/include/c++/14.1.1/bits/stringfwd.h \
- /usr/include/c++/14.1.1/bits/memoryfwd.h \
- /usr/include/c++/14.1.1/bits/postypes.h /usr/include/c++/14.1.1/cwchar \
- /usr/include/wchar.h /usr/include/bits/libc-header-start.h \
- /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h \
- /usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stdarg.h \
- /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
- /usr/include/bits/types/mbstate_t.h \
- /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
- /usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
- /usr/include/bits/types/__locale_t.h /usr/include/c++/14.1.1/exception \
- /usr/include/c++/14.1.1/bits/exception.h \
- /usr/include/c++/14.1.1/bits/version.h \
- /usr/include/c++/14.1.1/bits/exception_ptr.h \
- /usr/include/c++/14.1.1/bits/exception_defines.h \
- /usr/include/c++/14.1.1/bits/cxxabi_init_exception.h \
- /usr/include/c++/14.1.1/typeinfo \
- /usr/include/c++/14.1.1/bits/hash_bytes.h /usr/include/c++/14.1.1/new \
- /usr/include/c++/14.1.1/bits/move.h /usr/include/c++/14.1.1/type_traits \
- /usr/include/c++/14.1.1/bits/nested_exception.h \
- /usr/include/c++/14.1.1/bits/char_traits.h \
- /usr/include/c++/14.1.1/compare /usr/include/c++/14.1.1/concepts \
- /usr/include/c++/14.1.1/bits/stl_construct.h \
- /usr/include/c++/14.1.1/bits/stl_iterator_base_types.h \
- /usr/include/c++/14.1.1/bits/iterator_concepts.h \
- /usr/include/c++/14.1.1/bits/ptr_traits.h \
- /usr/include/c++/14.1.1/bits/ranges_cmp.h \
- /usr/include/c++/14.1.1/bits/stl_iterator_base_funcs.h \
- /usr/include/c++/14.1.1/bits/concept_check.h \
- /usr/include/c++/14.1.1/debug/assertions.h \
- /usr/include/c++/14.1.1/bits/localefwd.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \
- /usr/include/c++/14.1.1/clocale /usr/include/locale.h \
- /usr/include/bits/locale.h /usr/include/c++/14.1.1/cctype \
- /usr/include/ctype.h /usr/include/bits/types.h \
- /usr/include/bits/typesizes.h /usr/include/bits/time64.h \
- /usr/include/bits/endian.h /usr/include/bits/endianness.h \
- /usr/include/c++/14.1.1/bits/ios_base.h \
- /usr/include/c++/14.1.1/ext/atomicity.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \
- /usr/include/pthread.h /usr/include/sched.h \
- /usr/include/bits/types/time_t.h \
- /usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
- /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
- /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
- /usr/include/bits/types/struct_timeval.h \
- /usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
- /usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
- /usr/include/bits/types/struct_itimerspec.h \
- /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
- /usr/include/bits/pthreadtypes-arch.h \
- /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
- /usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
- /usr/include/bits/types/__sigset_t.h \
- /usr/include/bits/types/struct___jmp_buf_tag.h \
- /usr/include/bits/pthread_stack_min-dynamic.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \
- /usr/include/sys/single_threaded.h \
- /usr/include/c++/14.1.1/bits/locale_classes.h \
- /usr/include/c++/14.1.1/string /usr/include/c++/14.1.1/bits/allocator.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \
- /usr/include/c++/14.1.1/bits/new_allocator.h \
- /usr/include/c++/14.1.1/bits/functexcept.h \
- /usr/include/c++/14.1.1/bits/cpp_type_traits.h \
- /usr/include/c++/14.1.1/bits/ostream_insert.h \
- /usr/include/c++/14.1.1/bits/cxxabi_forced.h \
- /usr/include/c++/14.1.1/bits/stl_iterator.h \
- /usr/include/c++/14.1.1/ext/type_traits.h \
- /usr/include/c++/14.1.1/bits/stl_function.h \
- /usr/include/c++/14.1.1/backward/binders.h \
- /usr/include/c++/14.1.1/ext/numeric_traits.h \
- /usr/include/c++/14.1.1/bits/stl_algobase.h \
- /usr/include/c++/14.1.1/bits/stl_pair.h \
- /usr/include/c++/14.1.1/bits/utility.h \
- /usr/include/c++/14.1.1/debug/debug.h \
- /usr/include/c++/14.1.1/bits/predefined_ops.h \
- /usr/include/c++/14.1.1/bit /usr/include/c++/14.1.1/bits/refwrap.h \
- /usr/include/c++/14.1.1/bits/invoke.h \
- /usr/include/c++/14.1.1/bits/range_access.h \
- /usr/include/c++/14.1.1/initializer_list \
- /usr/include/c++/14.1.1/bits/basic_string.h \
- /usr/include/c++/14.1.1/ext/alloc_traits.h \
- /usr/include/c++/14.1.1/bits/alloc_traits.h \
- /usr/include/c++/14.1.1/string_view \
- /usr/include/c++/14.1.1/bits/functional_hash.h \
- /usr/include/c++/14.1.1/bits/ranges_base.h \
- /usr/include/c++/14.1.1/bits/max_size_type.h \
- /usr/include/c++/14.1.1/numbers \
- /usr/include/c++/14.1.1/bits/string_view.tcc \
- /usr/include/c++/14.1.1/ext/string_conversions.h \
- /usr/include/c++/14.1.1/cstdlib /usr/include/stdlib.h \
- /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
- /usr/include/sys/types.h /usr/include/bits/stdint-intn.h \
- /usr/include/endian.h /usr/include/bits/byteswap.h \
- /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
- /usr/include/alloca.h /usr/include/bits/stdlib-float.h \
- /usr/include/c++/14.1.1/bits/std_abs.h /usr/include/c++/14.1.1/cstdio \
- /usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
- /usr/include/bits/types/__fpos64_t.h \
- /usr/include/bits/types/struct_FILE.h \
- /usr/include/bits/types/cookie_io_functions_t.h \
- /usr/include/bits/stdio_lim.h /usr/include/c++/14.1.1/cerrno \
- /usr/include/errno.h /usr/include/bits/errno.h \
- /usr/include/linux/errno.h /usr/include/asm/errno.h \
- /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /usr/include/bits/types/error_t.h \
- /usr/include/c++/14.1.1/bits/charconv.h \
- /usr/include/c++/14.1.1/bits/basic_string.tcc \
- /usr/include/c++/14.1.1/bits/memory_resource.h \
- /usr/include/c++/14.1.1/cstddef \
- /usr/include/c++/14.1.1/bits/uses_allocator.h \
- /usr/include/c++/14.1.1/bits/uses_allocator_args.h \
- /usr/include/c++/14.1.1/tuple /usr/include/c++/14.1.1/bits/ranges_util.h \
- /usr/include/c++/14.1.1/bits/locale_classes.tcc \
- /usr/include/c++/14.1.1/system_error \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \
- /usr/include/c++/14.1.1/stdexcept /usr/include/c++/14.1.1/streambuf \
- /usr/include/c++/14.1.1/bits/streambuf.tcc \
- /usr/include/c++/14.1.1/bits/basic_ios.h \
- /usr/include/c++/14.1.1/bits/locale_facets.h \
- /usr/include/c++/14.1.1/cwctype /usr/include/wctype.h \
- /usr/include/bits/wctype-wchar.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \
- /usr/include/c++/14.1.1/bits/streambuf_iterator.h \
- /usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \
- /usr/include/c++/14.1.1/bits/locale_facets.tcc \
- /usr/include/c++/14.1.1/bits/basic_ios.tcc \
- /usr/include/c++/14.1.1/bits/ostream.tcc /usr/include/c++/14.1.1/istream \
- /usr/include/c++/14.1.1/bits/istream.tcc
diff --git a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.i b/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.i
deleted file mode 100644
index faac21b..0000000
--- a/cmake-build-debug/CMakeFiles/NextFlick.dir/admin.cpp.o.ddi.i
+++ /dev/null
@@ -1,43326 +0,0 @@
-# 0 "/home/ghazal/CLionProjects/NextFlick/admin.cpp"
-# 1 "/home/ghazal/CLionProjects/NextFlick/cmake-build-debug//"
-# 0 ""
-# 0 ""
-# 1 "/usr/include/stdc-predef.h" 1 3 4
-# 0 "" 2
-# 1 "/home/ghazal/CLionProjects/NextFlick/admin.cpp"
-
-
-
-
-# 1 "/home/ghazal/CLionProjects/NextFlick/admin.h" 1
-
-
-
-
-
-
-# 1 "/usr/include/c++/14.1.1/iostream" 1 3
-# 36 "/usr/include/c++/14.1.1/iostream" 3
-
-# 37 "/usr/include/c++/14.1.1/iostream" 3
-
-# 1 "/usr/include/c++/14.1.1/bits/requires_hosted.h" 1 3
-# 31 "/usr/include/c++/14.1.1/bits/requires_hosted.h" 3
-# 1 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 1 3
-# 33 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-
-# 34 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-# 308 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-
-# 308 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace std
-{
- typedef long unsigned int size_t;
- typedef long int ptrdiff_t;
-
-
- typedef decltype(nullptr) nullptr_t;
-
-
-#pragma GCC visibility push(default)
-
-
- extern "C++" __attribute__ ((__noreturn__, __always_inline__))
- inline void __terminate() noexcept
- {
- void terminate() noexcept __attribute__ ((__noreturn__,__cold__));
- terminate();
- }
-#pragma GCC visibility pop
-}
-# 341 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace std
-{
- inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
-}
-namespace __gnu_cxx
-{
- inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
-}
-# 534 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace std
-{
-#pragma GCC visibility push(default)
-
-
-
-
- __attribute__((__always_inline__))
- constexpr inline bool
- __is_constant_evaluated() noexcept
- {
-
-
-
-
-
- return __builtin_is_constant_evaluated();
-
-
-
- }
-#pragma GCC visibility pop
-}
-# 573 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace std
-{
-#pragma GCC visibility push(default)
-
- extern "C++" __attribute__ ((__noreturn__))
- void
- __glibcxx_assert_fail
- (const char* __file, int __line, const char* __function,
- const char* __condition)
- noexcept;
-#pragma GCC visibility pop
-}
-# 601 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace std
-{
- __attribute__((__always_inline__,__visibility__("default")))
- inline void
- __glibcxx_assert_fail()
- { }
-}
-# 680 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-# 1 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h" 1 3
-# 39 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h" 3
-# 1 "/usr/include/features.h" 1 3 4
-# 394 "/usr/include/features.h" 3 4
-# 1 "/usr/include/features-time64.h" 1 3 4
-# 20 "/usr/include/features-time64.h" 3 4
-# 1 "/usr/include/bits/wordsize.h" 1 3 4
-# 21 "/usr/include/features-time64.h" 2 3 4
-# 1 "/usr/include/bits/timesize.h" 1 3 4
-# 19 "/usr/include/bits/timesize.h" 3 4
-# 1 "/usr/include/bits/wordsize.h" 1 3 4
-# 20 "/usr/include/bits/timesize.h" 2 3 4
-# 22 "/usr/include/features-time64.h" 2 3 4
-# 395 "/usr/include/features.h" 2 3 4
-# 503 "/usr/include/features.h" 3 4
-# 1 "/usr/include/sys/cdefs.h" 1 3 4
-# 576 "/usr/include/sys/cdefs.h" 3 4
-# 1 "/usr/include/bits/wordsize.h" 1 3 4
-# 577 "/usr/include/sys/cdefs.h" 2 3 4
-# 1 "/usr/include/bits/long-double.h" 1 3 4
-# 578 "/usr/include/sys/cdefs.h" 2 3 4
-# 504 "/usr/include/features.h" 2 3 4
-# 527 "/usr/include/features.h" 3 4
-# 1 "/usr/include/gnu/stubs.h" 1 3 4
-# 10 "/usr/include/gnu/stubs.h" 3 4
-# 1 "/usr/include/gnu/stubs-64.h" 1 3 4
-# 11 "/usr/include/gnu/stubs.h" 2 3 4
-# 528 "/usr/include/features.h" 2 3 4
-# 40 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h" 2 3
-# 681 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 2 3
-
-
-# 1 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h" 1 3
-# 684 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 2 3
-# 825 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-namespace __gnu_cxx
-{
- typedef __decltype(0.0bf16) __bfloat16_t;
-}
-# 887 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 3
-# 1 "/usr/include/c++/14.1.1/pstl/pstl_config.h" 1 3
-# 888 "/usr/include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h" 2 3
-# 32 "/usr/include/c++/14.1.1/bits/requires_hosted.h" 2 3
-# 39 "/usr/include/c++/14.1.1/iostream" 2 3
-
-
-# 1 "/usr/include/c++/14.1.1/ostream" 1 3
-# 36 "/usr/include/c++/14.1.1/ostream" 3
-
-# 37 "/usr/include/c++/14.1.1/ostream" 3
-
-
-
-# 1 "/usr/include/c++/14.1.1/ios" 1 3
-# 36 "/usr/include/c++/14.1.1/ios" 3
-
-# 37 "/usr/include/c++/14.1.1/ios" 3
-
-
-
-# 1 "/usr/include/c++/14.1.1/iosfwd" 1 3
-# 36 "/usr/include/c++/14.1.1/iosfwd" 3
-
-# 37 "/usr/include/c++/14.1.1/iosfwd" 3
-
-
-
-
-# 1 "/usr/include/c++/14.1.1/bits/stringfwd.h" 1 3
-# 37 "/usr/include/c++/14.1.1/bits/stringfwd.h" 3
-
-# 38 "/usr/include/c++/14.1.1/bits/stringfwd.h" 3
-
-
-# 1 "/usr/include/c++/14.1.1/bits/memoryfwd.h" 1 3
-# 46 "/usr/include/c++/14.1.1/bits/memoryfwd.h" 3
-
-# 47 "/usr/include/c++/14.1.1/bits/memoryfwd.h" 3
-
-
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-# 64 "/usr/include/c++/14.1.1/bits/memoryfwd.h" 3
- template
- class allocator;
-
- template<>
- class allocator;
-
-
-
- template
- struct uses_allocator;
-
- template
- struct allocator_traits;
-
-
-
-
-
-}
-# 41 "/usr/include/c++/14.1.1/bits/stringfwd.h" 2 3
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-
-
-
-
-
-
-
- template
- struct char_traits;
-
- template<> struct char_traits;
-
- template<> struct char_traits;
-
-
- template<> struct char_traits;
-
-
-
- template<> struct char_traits;
- template<> struct char_traits;
-
-
-namespace __cxx11 {
-
- template,
- typename _Alloc = allocator<_CharT> >
- class basic_string;
-
-}
-
-
- typedef basic_string string;
-
-
- typedef basic_string wstring;
-
-
-
- typedef basic_string u8string;
-
-
-
-
- typedef basic_string u16string;
-
-
- typedef basic_string u32string;
-
-
-
-
-
-}
-# 42 "/usr/include/c++/14.1.1/iosfwd" 2 3
-# 1 "/usr/include/c++/14.1.1/bits/postypes.h" 1 3
-# 38 "/usr/include/c++/14.1.1/bits/postypes.h" 3
-
-# 39 "/usr/include/c++/14.1.1/bits/postypes.h" 3
-
-# 1 "/usr/include/c++/14.1.1/cwchar" 1 3
-# 39 "/usr/include/c++/14.1.1/cwchar" 3
-
-# 40 "/usr/include/c++/14.1.1/cwchar" 3
-
-
-
-
-# 1 "/usr/include/wchar.h" 1 3 4
-# 27 "/usr/include/wchar.h" 3 4
-# 1 "/usr/include/bits/libc-header-start.h" 1 3 4
-# 28 "/usr/include/wchar.h" 2 3 4
-
-
-# 1 "/usr/include/bits/floatn.h" 1 3 4
-# 119 "/usr/include/bits/floatn.h" 3 4
-# 1 "/usr/include/bits/floatn-common.h" 1 3 4
-# 24 "/usr/include/bits/floatn-common.h" 3 4
-# 1 "/usr/include/bits/long-double.h" 1 3 4
-# 25 "/usr/include/bits/floatn-common.h" 2 3 4
-# 120 "/usr/include/bits/floatn.h" 2 3 4
-# 31 "/usr/include/wchar.h" 2 3 4
-
-
-
-
-# 1 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 1 3 4
-# 214 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 3 4
-typedef long unsigned int size_t;
-# 36 "/usr/include/wchar.h" 2 3 4
-
-
-# 1 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stdarg.h" 1 3 4
-# 40 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stdarg.h" 3 4
-typedef __builtin_va_list __gnuc_va_list;
-# 39 "/usr/include/wchar.h" 2 3 4
-
-
-
-
-typedef __gnuc_va_list va_list;
-
-
-
-
-
-
-
-# 1 "/usr/include/bits/wchar.h" 1 3 4
-# 52 "/usr/include/wchar.h" 2 3 4
-# 1 "/usr/include/bits/types/wint_t.h" 1 3 4
-# 20 "/usr/include/bits/types/wint_t.h" 3 4
-typedef unsigned int wint_t;
-# 53 "/usr/include/wchar.h" 2 3 4
-# 1 "/usr/include/bits/types/mbstate_t.h" 1 3 4
-
-
-
-# 1 "/usr/include/bits/types/__mbstate_t.h" 1 3 4
-# 13 "/usr/include/bits/types/__mbstate_t.h" 3 4
-typedef struct
-{
- int __count;
- union
- {
- unsigned int __wch;
- char __wchb[4];
- } __value;
-} __mbstate_t;
-# 5 "/usr/include/bits/types/mbstate_t.h" 2 3 4
-
-typedef __mbstate_t mbstate_t;
-# 54 "/usr/include/wchar.h" 2 3 4
-# 1 "/usr/include/bits/types/__FILE.h" 1 3 4
-
-
-
-struct _IO_FILE;
-typedef struct _IO_FILE __FILE;
-# 55 "/usr/include/wchar.h" 2 3 4
-
-
-# 1 "/usr/include/bits/types/FILE.h" 1 3 4
-
-
-
-struct _IO_FILE;
-
-
-typedef struct _IO_FILE FILE;
-# 58 "/usr/include/wchar.h" 2 3 4
-
-
-# 1 "/usr/include/bits/types/locale_t.h" 1 3 4
-# 22 "/usr/include/bits/types/locale_t.h" 3 4
-# 1 "/usr/include/bits/types/__locale_t.h" 1 3 4
-# 27 "/usr/include/bits/types/__locale_t.h" 3 4
-struct __locale_struct
-{
-
- struct __locale_data *__locales[13];
-
-
- const unsigned short int *__ctype_b;
- const int *__ctype_tolower;
- const int *__ctype_toupper;
-
-
- const char *__names[13];
-};
-
-typedef struct __locale_struct *__locale_t;
-# 23 "/usr/include/bits/types/locale_t.h" 2 3 4
-
-typedef __locale_t locale_t;
-# 61 "/usr/include/wchar.h" 2 3 4
-# 90 "/usr/include/wchar.h" 3 4
-extern "C" {
-
-
-
-struct tm;
-
-
-
-extern wchar_t *wcscpy (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2)));
-
-
-extern wchar_t *wcsncpy (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src, size_t __n)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2)));
-
-
-
-extern size_t wcslcpy (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src, size_t __n)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__access__ (__write_only__, 1, 3)));
-
-
-
-extern size_t wcslcat (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src, size_t __n)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__access__ (__read_write__, 1, 3)));
-
-
-
-extern wchar_t *wcscat (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2)));
-
-extern wchar_t *wcsncat (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src, size_t __n)
- noexcept (true) __attribute__ ((__nonnull__ (1, 2)));
-
-
-extern int wcscmp (const wchar_t *__s1, const wchar_t *__s2)
- noexcept (true) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
-
-extern int wcsncmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n)
- noexcept (true) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
-
-
-
-extern int wcscasecmp (const wchar_t *__s1, const wchar_t *__s2) noexcept (true);
-
-
-extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
- size_t __n) noexcept (true);
-
-
-
-extern int wcscasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
- locale_t __loc) noexcept (true);
-
-extern int wcsncasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
- size_t __n, locale_t __loc) noexcept (true);
-
-
-
-
-extern int wcscoll (const wchar_t *__s1, const wchar_t *__s2) noexcept (true);
-
-
-
-extern size_t wcsxfrm (wchar_t *__restrict __s1,
- const wchar_t *__restrict __s2, size_t __n) noexcept (true);
-
-
-
-
-
-
-
-extern int wcscoll_l (const wchar_t *__s1, const wchar_t *__s2,
- locale_t __loc) noexcept (true);
-
-
-
-
-extern size_t wcsxfrm_l (wchar_t *__s1, const wchar_t *__s2,
- size_t __n, locale_t __loc) noexcept (true);
-
-
-extern wchar_t *wcsdup (const wchar_t *__s) noexcept (true)
- __attribute__ ((__malloc__)) __attribute__ ((__malloc__ (__builtin_free, 1)));
-
-
-
-
-extern "C++" wchar_t *wcschr (wchar_t *__wcs, wchar_t __wc)
- noexcept (true) __asm ("wcschr") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wcschr (const wchar_t *__wcs, wchar_t __wc)
- noexcept (true) __asm ("wcschr") __attribute__ ((__pure__));
-
-
-
-
-
-
-extern "C++" wchar_t *wcsrchr (wchar_t *__wcs, wchar_t __wc)
- noexcept (true) __asm ("wcsrchr") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wcsrchr (const wchar_t *__wcs, wchar_t __wc)
- noexcept (true) __asm ("wcsrchr") __attribute__ ((__pure__));
-# 206 "/usr/include/wchar.h" 3 4
-extern wchar_t *wcschrnul (const wchar_t *__s, wchar_t __wc)
- noexcept (true) __attribute__ ((__pure__));
-
-
-
-
-extern size_t wcscspn (const wchar_t *__wcs, const wchar_t *__reject)
- noexcept (true) __attribute__ ((__pure__));
-
-
-extern size_t wcsspn (const wchar_t *__wcs, const wchar_t *__accept)
- noexcept (true) __attribute__ ((__pure__));
-
-
-extern "C++" wchar_t *wcspbrk (wchar_t *__wcs, const wchar_t *__accept)
- noexcept (true) __asm ("wcspbrk") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wcspbrk (const wchar_t *__wcs,
- const wchar_t *__accept)
- noexcept (true) __asm ("wcspbrk") __attribute__ ((__pure__));
-
-
-
-
-
-
-extern "C++" wchar_t *wcsstr (wchar_t *__haystack, const wchar_t *__needle)
- noexcept (true) __asm ("wcsstr") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wcsstr (const wchar_t *__haystack,
- const wchar_t *__needle)
- noexcept (true) __asm ("wcsstr") __attribute__ ((__pure__));
-
-
-
-
-
-
-extern wchar_t *wcstok (wchar_t *__restrict __s,
- const wchar_t *__restrict __delim,
- wchar_t **__restrict __ptr) noexcept (true);
-
-
-extern size_t wcslen (const wchar_t *__s) noexcept (true) __attribute__ ((__pure__));
-
-
-
-
-extern "C++" wchar_t *wcswcs (wchar_t *__haystack, const wchar_t *__needle)
- noexcept (true) __asm ("wcswcs") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wcswcs (const wchar_t *__haystack,
- const wchar_t *__needle)
- noexcept (true) __asm ("wcswcs") __attribute__ ((__pure__));
-# 265 "/usr/include/wchar.h" 3 4
-extern size_t wcsnlen (const wchar_t *__s, size_t __maxlen)
- noexcept (true) __attribute__ ((__pure__));
-
-
-
-
-
-extern "C++" wchar_t *wmemchr (wchar_t *__s, wchar_t __c, size_t __n)
- noexcept (true) __asm ("wmemchr") __attribute__ ((__pure__));
-extern "C++" const wchar_t *wmemchr (const wchar_t *__s, wchar_t __c,
- size_t __n)
- noexcept (true) __asm ("wmemchr") __attribute__ ((__pure__));
-
-
-
-
-
-
-extern int wmemcmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n)
- noexcept (true) __attribute__ ((__pure__));
-
-
-extern wchar_t *wmemcpy (wchar_t *__restrict __s1,
- const wchar_t *__restrict __s2, size_t __n) noexcept (true);
-
-
-
-extern wchar_t *wmemmove (wchar_t *__s1, const wchar_t *__s2, size_t __n)
- noexcept (true);
-
-
-extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) noexcept (true);
-
-
-
-
-extern wchar_t *wmempcpy (wchar_t *__restrict __s1,
- const wchar_t *__restrict __s2, size_t __n)
- noexcept (true);
-
-
-
-
-
-extern wint_t btowc (int __c) noexcept (true);
-
-
-
-extern int wctob (wint_t __c) noexcept (true);
-
-
-
-extern int mbsinit (const mbstate_t *__ps) noexcept (true) __attribute__ ((__pure__));
-
-
-
-extern size_t mbrtowc (wchar_t *__restrict __pwc,
- const char *__restrict __s, size_t __n,
- mbstate_t *__restrict __p) noexcept (true);
-
-
-extern size_t wcrtomb (char *__restrict __s, wchar_t __wc,
- mbstate_t *__restrict __ps) noexcept (true);
-
-
-extern size_t __mbrlen (const char *__restrict __s, size_t __n,
- mbstate_t *__restrict __ps) noexcept (true);
-extern size_t mbrlen (const char *__restrict __s, size_t __n,
- mbstate_t *__restrict __ps) noexcept (true);
-# 362 "/usr/include/wchar.h" 3 4
-extern size_t mbsrtowcs (wchar_t *__restrict __dst,
- const char **__restrict __src, size_t __len,
- mbstate_t *__restrict __ps) noexcept (true);
-
-
-
-extern size_t wcsrtombs (char *__restrict __dst,
- const wchar_t **__restrict __src, size_t __len,
- mbstate_t *__restrict __ps) noexcept (true);
-
-
-
-
-
-extern size_t mbsnrtowcs (wchar_t *__restrict __dst,
- const char **__restrict __src, size_t __nmc,
- size_t __len, mbstate_t *__restrict __ps) noexcept (true);
-
-
-
-extern size_t wcsnrtombs (char *__restrict __dst,
- const wchar_t **__restrict __src,
- size_t __nwc, size_t __len,
- mbstate_t *__restrict __ps) noexcept (true);
-
-
-
-
-
-
-extern int wcwidth (wchar_t __c) noexcept (true);
-
-
-
-extern int wcswidth (const wchar_t *__s, size_t __n) noexcept (true);
-
-
-
-
-
-extern double wcstod (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-
-
-
-extern float wcstof (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-extern long double wcstold (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-# 422 "/usr/include/wchar.h" 3 4
-extern _Float32 wcstof32 (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-
-
-
-extern _Float64 wcstof64 (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-
-
-
-extern _Float128 wcstof128 (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-
-
-
-extern _Float32x wcstof32x (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-
-
-
-extern _Float64x wcstof64x (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr) noexcept (true);
-# 455 "/usr/include/wchar.h" 3 4
-extern long int wcstol (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, int __base) noexcept (true);
-
-
-
-extern unsigned long int wcstoul (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, int __base)
- noexcept (true);
-
-
-
-
-__extension__
-extern long long int wcstoll (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, int __base)
- noexcept (true);
-
-
-
-__extension__
-extern unsigned long long int wcstoull (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- int __base) noexcept (true);
-
-
-
-
-
-__extension__
-extern long long int wcstoq (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, int __base)
- noexcept (true);
-
-
-
-__extension__
-extern unsigned long long int wcstouq (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- int __base) noexcept (true);
-
-
-
-
-
-
-extern long int wcstol (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstol")
-
- ;
-extern unsigned long int wcstoul (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstoul")
-
-
- ;
-__extension__
-extern long long int wcstoll (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstoll")
-
-
- ;
-__extension__
-extern unsigned long long int wcstoull (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstoull")
-
-
- ;
-
-__extension__
-extern long long int wcstoq (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstoll")
-
- ;
-__extension__
-extern unsigned long long int wcstouq (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base) noexcept (true) __asm__ ("" "__isoc23_wcstoull")
-
-
- ;
-# 561 "/usr/include/wchar.h" 3 4
-extern long int wcstol_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, int __base,
- locale_t __loc) noexcept (true);
-
-extern unsigned long int wcstoul_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- int __base, locale_t __loc) noexcept (true);
-
-__extension__
-extern long long int wcstoll_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- int __base, locale_t __loc) noexcept (true);
-
-__extension__
-extern unsigned long long int wcstoull_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- int __base, locale_t __loc)
- noexcept (true);
-
-
-
-
-
-extern long int wcstol_l (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base, locale_t __loc) noexcept (true) __asm__ ("" "__isoc23_wcstol_l")
-
-
- ;
-extern unsigned long int wcstoul_l (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base, locale_t __loc) noexcept (true) __asm__ ("" "__isoc23_wcstoul_l")
-
-
-
- ;
-__extension__
-extern long long int wcstoll_l (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base, locale_t __loc) noexcept (true) __asm__ ("" "__isoc23_wcstoll_l")
-
-
-
- ;
-__extension__
-extern unsigned long long int wcstoull_l (const wchar_t *__restrict __nptr, wchar_t **__restrict __endptr, int __base, locale_t __loc) noexcept (true) __asm__ ("" "__isoc23_wcstoull_l")
-
-
-
- ;
-# 630 "/usr/include/wchar.h" 3 4
-extern double wcstod_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, locale_t __loc)
- noexcept (true);
-
-extern float wcstof_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr, locale_t __loc)
- noexcept (true);
-
-extern long double wcstold_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-# 649 "/usr/include/wchar.h" 3 4
-extern _Float32 wcstof32_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-
-
-
-extern _Float64 wcstof64_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-
-
-
-extern _Float128 wcstof128_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-
-
-
-extern _Float32x wcstof32x_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-
-
-
-extern _Float64x wcstof64x_l (const wchar_t *__restrict __nptr,
- wchar_t **__restrict __endptr,
- locale_t __loc) noexcept (true);
-# 689 "/usr/include/wchar.h" 3 4
-extern wchar_t *wcpcpy (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src) noexcept (true);
-
-
-
-extern wchar_t *wcpncpy (wchar_t *__restrict __dest,
- const wchar_t *__restrict __src, size_t __n)
- noexcept (true);
-# 718 "/usr/include/wchar.h" 3 4
-extern __FILE *open_wmemstream (wchar_t **__bufloc, size_t *__sizeloc) noexcept (true)
- __attribute__ ((__malloc__)) ;
-
-
-
-
-
-extern int fwide (__FILE *__fp, int __mode) noexcept (true);
-
-
-
-
-
-
-extern int fwprintf (__FILE *__restrict __stream,
- const wchar_t *__restrict __format, ...)
- ;
-
-
-
-
-extern int wprintf (const wchar_t *__restrict __format, ...)
- ;
-
-extern int swprintf (wchar_t *__restrict __s, size_t __n,
- const wchar_t *__restrict __format, ...)
- noexcept (true) ;
-
-
-
-
-
-extern int vfwprintf (__FILE *__restrict __s,
- const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- ;
-
-
-
-
-extern int vwprintf (const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- ;
-
-
-extern int vswprintf (wchar_t *__restrict __s, size_t __n,
- const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- noexcept (true) ;
-
-
-
-
-
-
-extern int fwscanf (__FILE *__restrict __stream,
- const wchar_t *__restrict __format, ...)
- ;
-
-
-
-
-extern int wscanf (const wchar_t *__restrict __format, ...)
- ;
-
-extern int swscanf (const wchar_t *__restrict __s,
- const wchar_t *__restrict __format, ...)
- noexcept (true) ;
-# 795 "/usr/include/wchar.h" 3 4
-extern int fwscanf (__FILE *__restrict __stream, const wchar_t *__restrict __format, ...) __asm__ ("" "__isoc23_fwscanf")
-
-
- ;
-extern int wscanf (const wchar_t *__restrict __format, ...) __asm__ ("" "__isoc23_wscanf")
-
- ;
-extern int swscanf (const wchar_t *__restrict __s, const wchar_t *__restrict __format, ...) noexcept (true) __asm__ ("" "__isoc23_swscanf")
-
-
- ;
-# 851 "/usr/include/wchar.h" 3 4
-extern int vfwscanf (__FILE *__restrict __s,
- const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- ;
-
-
-
-
-extern int vwscanf (const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- ;
-
-extern int vswscanf (const wchar_t *__restrict __s,
- const wchar_t *__restrict __format,
- __gnuc_va_list __arg)
- noexcept (true) ;
-# 875 "/usr/include/wchar.h" 3 4
-extern int vfwscanf (__FILE *__restrict __s, const wchar_t *__restrict __format, __gnuc_va_list __arg) __asm__ ("" "__isoc23_vfwscanf")
-
-
- ;
-extern int vwscanf (const wchar_t *__restrict __format, __gnuc_va_list __arg) __asm__ ("" "__isoc23_vwscanf")
-
- ;
-extern int vswscanf (const wchar_t *__restrict __s, const wchar_t *__restrict __format, __gnuc_va_list __arg) noexcept (true) __asm__ ("" "__isoc23_vswscanf")
-
-
- ;
-# 935 "/usr/include/wchar.h" 3 4
-extern wint_t fgetwc (__FILE *__stream);
-extern wint_t getwc (__FILE *__stream);
-
-
-
-
-
-extern wint_t getwchar (void);
-
-
-
-
-
-
-extern wint_t fputwc (wchar_t __wc, __FILE *__stream);
-extern wint_t putwc (wchar_t __wc, __FILE *__stream);
-
-
-
-
-
-extern wint_t putwchar (wchar_t __wc);
-
-
-
-
-
-
-
-extern wchar_t *fgetws (wchar_t *__restrict __ws, int __n,
- __FILE *__restrict __stream);
-
-
-
-
-
-extern int fputws (const wchar_t *__restrict __ws,
- __FILE *__restrict __stream);
-
-
-
-
-
-
-extern wint_t ungetwc (wint_t __wc, __FILE *__stream);
-# 990 "/usr/include/wchar.h" 3 4
-extern wint_t getwc_unlocked (__FILE *__stream);
-extern wint_t getwchar_unlocked (void);
-
-
-
-
-
-
-
-extern wint_t fgetwc_unlocked (__FILE *__stream);
-
-
-
-
-
-
-
-extern wint_t fputwc_unlocked (wchar_t __wc, __FILE *__stream);
-# 1016 "/usr/include/wchar.h" 3 4
-extern wint_t putwc_unlocked (wchar_t __wc, __FILE *__stream);
-extern wint_t putwchar_unlocked (wchar_t __wc);
-# 1026 "/usr/include/wchar.h" 3 4
-extern wchar_t *fgetws_unlocked (wchar_t *__restrict __ws, int __n,
- __FILE *__restrict __stream);
-
-
-
-
-
-
-
-extern int fputws_unlocked (const wchar_t *__restrict __ws,
- __FILE *__restrict __stream);
-
-
-
-
-
-
-extern size_t wcsftime (wchar_t *__restrict __s, size_t __maxsize,
- const wchar_t *__restrict __format,
- const struct tm *__restrict __tp) noexcept (true);
-
-
-
-
-extern size_t wcsftime_l (wchar_t *__restrict __s, size_t __maxsize,
- const wchar_t *__restrict __format,
- const struct tm *__restrict __tp,
- locale_t __loc) noexcept (true);
-# 1073 "/usr/include/wchar.h" 3 4
-}
-# 45 "/usr/include/c++/14.1.1/cwchar" 2 3
-# 62 "/usr/include/c++/14.1.1/cwchar" 3
-namespace std
-{
- using ::mbstate_t;
-}
-# 135 "/usr/include/c++/14.1.1/cwchar" 3
-extern "C++"
-{
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-
- using ::wint_t;
-
- using ::btowc;
- using ::fgetwc;
- using ::fgetws;
- using ::fputwc;
- using ::fputws;
- using ::fwide;
- using ::fwprintf;
- using ::fwscanf;
- using ::getwc;
- using ::getwchar;
- using ::mbrlen;
- using ::mbrtowc;
- using ::mbsinit;
- using ::mbsrtowcs;
- using ::putwc;
- using ::putwchar;
-
- using ::swprintf;
-
- using ::swscanf;
- using ::ungetwc;
- using ::vfwprintf;
-
- using ::vfwscanf;
-
-
- using ::vswprintf;
-
-
- using ::vswscanf;
-
- using ::vwprintf;
-
- using ::vwscanf;
-
- using ::wcrtomb;
- using ::wcscat;
- using ::wcscmp;
- using ::wcscoll;
- using ::wcscpy;
- using ::wcscspn;
- using ::wcsftime;
- using ::wcslen;
- using ::wcsncat;
- using ::wcsncmp;
- using ::wcsncpy;
- using ::wcsrtombs;
- using ::wcsspn;
- using ::wcstod;
-
- using ::wcstof;
-
- using ::wcstok;
- using ::wcstol;
- using ::wcstoul;
- using ::wcsxfrm;
- using ::wctob;
- using ::wmemcmp;
- using ::wmemcpy;
- using ::wmemmove;
- using ::wmemset;
- using ::wprintf;
- using ::wscanf;
- using ::wcschr;
- using ::wcspbrk;
- using ::wcsrchr;
- using ::wcsstr;
- using ::wmemchr;
-# 234 "/usr/include/c++/14.1.1/cwchar" 3
-
-}
-}
-
-
-
-
-
-
-
-namespace __gnu_cxx
-{
-
-
-
-
-
- using ::wcstold;
-# 260 "/usr/include/c++/14.1.1/cwchar" 3
- using ::wcstoll;
- using ::wcstoull;
-
-}
-
-namespace std
-{
- using ::__gnu_cxx::wcstold;
- using ::__gnu_cxx::wcstoll;
- using ::__gnu_cxx::wcstoull;
-}
-# 280 "/usr/include/c++/14.1.1/cwchar" 3
-namespace std
-{
-
- using std::wcstof;
-
-
- using std::vfwscanf;
-
-
- using std::vswscanf;
-
-
- using std::vwscanf;
-
-
-
- using std::wcstold;
- using std::wcstoll;
- using std::wcstoull;
-
-}
-# 41 "/usr/include/c++/14.1.1/bits/postypes.h" 2 3
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-# 62 "/usr/include/c++/14.1.1/bits/postypes.h" 3
- typedef long int streamoff;
-
-
-
-
-
- typedef ptrdiff_t streamsize;
-# 81 "/usr/include/c++/14.1.1/bits/postypes.h" 3
- template
- class fpos
- {
- private:
- streamoff _M_off;
- _StateT _M_state;
-
- public:
-
-
-
-
- fpos()
- : _M_off(0), _M_state() { }
-# 103 "/usr/include/c++/14.1.1/bits/postypes.h" 3
- fpos(streamoff __off)
- : _M_off(__off), _M_state() { }
-
-
- fpos(const fpos&) = default;
- fpos& operator=(const fpos&) = default;
- ~fpos() = default;
-
-
-
- operator streamoff() const { return _M_off; }
-
-
- void
- state(_StateT __st)
- { _M_state = __st; }
-
-
- _StateT
- state() const
- { return _M_state; }
-
-
-
-
-
- fpos&
- operator+=(streamoff __off)
- {
- _M_off += __off;
- return *this;
- }
-
-
-
-
-
- fpos&
- operator-=(streamoff __off)
- {
- _M_off -= __off;
- return *this;
- }
-
-
-
-
-
-
-
- fpos
- operator+(streamoff __off) const
- {
- fpos __pos(*this);
- __pos += __off;
- return __pos;
- }
-
-
-
-
-
-
-
- fpos
- operator-(streamoff __off) const
- {
- fpos __pos(*this);
- __pos -= __off;
- return __pos;
- }
-
-
-
-
-
-
- streamoff
- operator-(const fpos& __other) const
- { return _M_off - __other._M_off; }
- };
-
-
-
-
-
-
- template
- inline bool
- operator==(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
- { return streamoff(__lhs) == streamoff(__rhs); }
-
- template
- inline bool
- operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
- { return streamoff(__lhs) != streamoff(__rhs); }
-
-
-
-
-
- typedef fpos streampos;
-
- typedef fpos wstreampos;
-
-
-
- typedef fpos u8streampos;
-
-
-
-
- typedef fpos u16streampos;
-
- typedef fpos u32streampos;
-
-
-
-}
-# 43 "/usr/include/c++/14.1.1/iosfwd" 2 3
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-# 76 "/usr/include/c++/14.1.1/iosfwd" 3
- class ios_base;
-
- template >
- class basic_ios;
-
- template >
- class basic_streambuf;
-
- template >
- class basic_istream;
-
- template >
- class basic_ostream;
-
- template >
- class basic_iostream;
-
-
-namespace __cxx11 {
-
- template,
- typename _Alloc = allocator<_CharT> >
- class basic_stringbuf;
-
- template,
- typename _Alloc = allocator<_CharT> >
- class basic_istringstream;
-
- template,
- typename _Alloc = allocator<_CharT> >
- class basic_ostringstream;
-
- template,
- typename _Alloc = allocator<_CharT> >
- class basic_stringstream;
-
-}
-
- template >
- class basic_filebuf;
-
- template >
- class basic_ifstream;
-
- template >
- class basic_ofstream;
-
- template >
- class basic_fstream;
-
- template >
- class istreambuf_iterator;
-
- template >
- class ostreambuf_iterator;
-
-
-
- typedef basic_ios ios;
-
-
- typedef basic_streambuf streambuf;
-
-
- typedef basic_istream istream;
-
-
- typedef basic_ostream ostream;
-
-
- typedef basic_iostream iostream;
-
-
- typedef basic_stringbuf stringbuf;
-
-
- typedef basic_istringstream istringstream;
-
-
- typedef basic_ostringstream ostringstream;
-
-
- typedef basic_stringstream stringstream;
-
-
- typedef basic_filebuf filebuf;
-
-
- typedef basic_ifstream ifstream;
-
-
- typedef basic_ofstream ofstream;
-
-
- typedef basic_fstream fstream;
-
-
-
- typedef basic_ios wios;
-
-
- typedef basic_streambuf wstreambuf;
-
-
- typedef basic_istream wistream;
-
-
- typedef basic_ostream wostream;
-
-
- typedef basic_iostream wiostream;
-
-
- typedef basic_stringbuf wstringbuf;
-
-
- typedef basic_istringstream wistringstream;
-
-
- typedef basic_ostringstream wostringstream;
-
-
- typedef basic_stringstream wstringstream;
-
-
- typedef basic_filebuf wfilebuf;
-
-
- typedef basic_ifstream wifstream;
-
-
- typedef basic_ofstream wofstream;
-
-
- typedef basic_fstream wfstream;
-
-
-
- template,
- typename _Allocator = allocator<_CharT>>
- class basic_syncbuf;
- template,
- typename _Allocator = allocator<_CharT>>
- class basic_osyncstream;
-
- using syncbuf = basic_syncbuf;
- using osyncstream = basic_osyncstream;
-
-
- using wsyncbuf = basic_syncbuf;
- using wosyncstream = basic_osyncstream;
-# 255 "/usr/include/c++/14.1.1/iosfwd" 3
-
-}
-# 41 "/usr/include/c++/14.1.1/ios" 2 3
-# 1 "/usr/include/c++/14.1.1/exception" 1 3
-# 33 "/usr/include/c++/14.1.1/exception" 3
-
-# 34 "/usr/include/c++/14.1.1/exception" 3
-
-
-# 1 "/usr/include/c++/14.1.1/bits/exception.h" 1 3
-# 34 "/usr/include/c++/14.1.1/bits/exception.h" 3
-
-# 35 "/usr/include/c++/14.1.1/bits/exception.h" 3
-
-
-
-extern "C++" {
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-# 59 "/usr/include/c++/14.1.1/bits/exception.h" 3
- class exception
- {
- public:
- exception() noexcept { }
- virtual ~exception() noexcept;
-
- exception(const exception&) = default;
- exception& operator=(const exception&) = default;
- exception(exception&&) = default;
- exception& operator=(exception&&) = default;
-
-
-
-
- virtual const char*
- what() const noexcept;
- };
-
-
-
-}
-
-}
-# 37 "/usr/include/c++/14.1.1/exception" 2 3
-
-
-# 1 "/usr/include/c++/14.1.1/bits/version.h" 1 3
-# 47 "/usr/include/c++/14.1.1/bits/version.h" 3
-
-# 48 "/usr/include/c++/14.1.1/bits/version.h" 3
-# 40 "/usr/include/c++/14.1.1/exception" 2 3
-
-extern "C++" {
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-# 54 "/usr/include/c++/14.1.1/exception" 3
- class bad_exception : public exception
- {
- public:
- bad_exception() noexcept { }
-
-
-
- virtual ~bad_exception() noexcept;
-
-
- virtual const char*
- what() const noexcept;
- };
-
-
- typedef void (*terminate_handler) ();
-
-
- terminate_handler set_terminate(terminate_handler) noexcept;
-
-
-
- terminate_handler get_terminate() noexcept;
-
-
-
-
- void terminate() noexcept __attribute__ ((__noreturn__,__cold__));
-
-
-
- typedef void (*__attribute__ ((__deprecated__)) unexpected_handler) ();
-
-
-
-
-
- __attribute__ ((__deprecated__))
- unexpected_handler set_unexpected(unexpected_handler) noexcept;
-
-
-
-
-
-
-
- __attribute__ ((__deprecated__))
- unexpected_handler get_unexpected() noexcept;
-
-
-
-
-
-
-
- __attribute__ ((__deprecated__))
- void unexpected() __attribute__ ((__noreturn__,__cold__));
-# 124 "/usr/include/c++/14.1.1/exception" 3
- __attribute__ ((__deprecated__ ("use '" "std::uncaught_exceptions()" "' instead")))
- bool uncaught_exception() noexcept __attribute__ ((__pure__));
-
-
-
-
-
-
- int uncaught_exceptions() noexcept __attribute__ ((__pure__));
-
-
-
-}
-
-namespace __gnu_cxx __attribute__ ((__visibility__ ("default")))
-{
-
-# 158 "/usr/include/c++/14.1.1/exception" 3
- void __verbose_terminate_handler();
-
-
-}
-
-}
-
-
-# 1 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 1 3
-# 35 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 3
-# 1 "/usr/include/c++/14.1.1/bits/exception_defines.h" 1 3
-# 36 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 2 3
-# 1 "/usr/include/c++/14.1.1/bits/cxxabi_init_exception.h" 1 3
-# 34 "/usr/include/c++/14.1.1/bits/cxxabi_init_exception.h" 3
-
-# 35 "/usr/include/c++/14.1.1/bits/cxxabi_init_exception.h" 3
-
-#pragma GCC visibility push(default)
-
-# 1 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 1 3 4
-# 145 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 3 4
-typedef long int ptrdiff_t;
-# 425 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 3 4
-typedef struct {
- long long __max_align_ll __attribute__((__aligned__(__alignof__(long long))));
- long double __max_align_ld __attribute__((__aligned__(__alignof__(long double))));
-# 436 "/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/stddef.h" 3 4
-} max_align_t;
-
-
-
-
-
-
- typedef decltype(nullptr) nullptr_t;
-# 39 "/usr/include/c++/14.1.1/bits/cxxabi_init_exception.h" 2 3
-# 50 "/usr/include/c++/14.1.1/bits/cxxabi_init_exception.h" 3
-namespace std
-{
- class type_info;
-}
-
-namespace __cxxabiv1
-{
- struct __cxa_refcounted_exception;
-
- extern "C"
- {
-
- void*
- __cxa_allocate_exception(size_t) noexcept;
-
- void
- __cxa_free_exception(void*) noexcept;
-
-
- __cxa_refcounted_exception*
- __cxa_init_primary_exception(void *__object, std::type_info *__tinfo,
- void ( *__dest) (void *))
- noexcept;
-
- }
-}
-
-
-
-#pragma GCC visibility pop
-# 37 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 2 3
-# 1 "/usr/include/c++/14.1.1/typeinfo" 1 3
-# 32 "/usr/include/c++/14.1.1/typeinfo" 3
-
-# 33 "/usr/include/c++/14.1.1/typeinfo" 3
-
-
-
-# 1 "/usr/include/c++/14.1.1/bits/hash_bytes.h" 1 3
-# 33 "/usr/include/c++/14.1.1/bits/hash_bytes.h" 3
-
-# 34 "/usr/include/c++/14.1.1/bits/hash_bytes.h" 3
-
-
-
-namespace std
-{
-
-
-
-
-
-
-
- size_t
- _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
-
-
-
-
-
- size_t
- _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
-
-
-}
-# 37 "/usr/include/c++/14.1.1/typeinfo" 2 3
-
-
-
-# 1 "/usr/include/c++/14.1.1/bits/version.h" 1 3
-# 47 "/usr/include/c++/14.1.1/bits/version.h" 3
-
-# 48 "/usr/include/c++/14.1.1/bits/version.h" 3
-# 41 "/usr/include/c++/14.1.1/typeinfo" 2 3
-
-#pragma GCC visibility push(default)
-
-extern "C++" {
-
-namespace __cxxabiv1
-{
- class __class_type_info;
-}
-# 83 "/usr/include/c++/14.1.1/typeinfo" 3
-namespace std
-{
-
-
-
-
-
-
- class type_info
- {
- public:
-
-
-
-
- virtual ~type_info();
-
-
-
- const char* name() const noexcept
- { return __name[0] == '*' ? __name + 1 : __name; }
-
-
-
- bool before(const type_info& __arg) const noexcept;
-
-
- bool operator==(const type_info& __arg) const noexcept;
-
-
-
-
-
-
-
- size_t hash_code() const noexcept
- {
-
- return _Hash_bytes(name(), __builtin_strlen(name()),
- static_cast(0xc70f6907UL));
-
-
-
- }
-
-
-
- virtual bool __is_pointer_p() const;
-
-
- virtual bool __is_function_p() const;
-
-
-
-
-
-
-
- virtual bool __do_catch(const type_info *__thr_type, void **__thr_obj,
- unsigned __outer) const;
-
-
- virtual bool __do_upcast(const __cxxabiv1::__class_type_info *__target,
- void **__obj_ptr) const;
-
- protected:
- const char *__name;
-
- explicit type_info(const char *__n): __name(__n) { }
-
- private:
-
-
- type_info& operator=(const type_info&) = delete;
- type_info(const type_info&) = delete;
-# 166 "/usr/include/c++/14.1.1/typeinfo" 3
- };
-
-
- inline bool
- type_info::before(const type_info& __arg) const noexcept
- {
-
-
-
-
- if (__name[0] != '*' || __arg.__name[0] != '*')
- return __builtin_strcmp (__name, __arg.__name) < 0;
-# 186 "/usr/include/c++/14.1.1/typeinfo" 3
- return __name < __arg.__name;
- }
-
-
-
- inline bool
- type_info::operator==(const type_info& __arg) const noexcept
- {
- if (std::__is_constant_evaluated())
- return this == &__arg;
-
- if (__name == __arg.__name)
- return true;
-
-
-
-
-
-
- return __name[0] != '*' && __builtin_strcmp (__name, __arg.name()) == 0;
-
-
-
- }
-# 219 "/usr/include/c++/14.1.1/typeinfo" 3
- class bad_cast : public exception
- {
- public:
- bad_cast() noexcept { }
-
-
-
- virtual ~bad_cast() noexcept;
-
-
- virtual const char* what() const noexcept;
- };
-
-
-
-
-
- class bad_typeid : public exception
- {
- public:
- bad_typeid () noexcept { }
-
-
-
- virtual ~bad_typeid() noexcept;
-
-
- virtual const char* what() const noexcept;
- };
-}
-
-}
-
-#pragma GCC visibility pop
-# 38 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 2 3
-# 1 "/usr/include/c++/14.1.1/new" 1 3
-# 38 "/usr/include/c++/14.1.1/new" 3
-
-# 39 "/usr/include/c++/14.1.1/new" 3
-
-
-
-
-
-
-
-# 1 "/usr/include/c++/14.1.1/bits/version.h" 1 3
-# 47 "/usr/include/c++/14.1.1/bits/version.h" 3
-
-# 48 "/usr/include/c++/14.1.1/bits/version.h" 3
-# 47 "/usr/include/c++/14.1.1/new" 2 3
-
-#pragma GCC visibility push(default)
-
-extern "C++" {
-
-namespace std
-{
-
-
-
-
-
-
- class bad_alloc : public exception
- {
- public:
- bad_alloc() throw() { }
-
-
- bad_alloc(const bad_alloc&) = default;
- bad_alloc& operator=(const bad_alloc&) = default;
-
-
-
-
- virtual ~bad_alloc() throw();
-
-
- virtual const char* what() const throw();
- };
-
-
- class bad_array_new_length : public bad_alloc
- {
- public:
- bad_array_new_length() throw() { }
-
-
-
- virtual ~bad_array_new_length() throw();
-
-
- virtual const char* what() const throw();
- };
-
-
-
- enum class align_val_t: size_t {};
-
-
- struct nothrow_t
- {
-
- explicit nothrow_t() = default;
-
- };
-
- extern const nothrow_t nothrow;
-
-
-
- typedef void (*new_handler)();
-
-
-
- new_handler set_new_handler(new_handler) throw();
-
-
-
- new_handler get_new_handler() noexcept;
-
-}
-# 131 "/usr/include/c++/14.1.1/new" 3
-[[__nodiscard__]] void* operator new(std::size_t)
- __attribute__((__externally_visible__));
-[[__nodiscard__]] void* operator new[](std::size_t)
- __attribute__((__externally_visible__));
-void operator delete(void*) noexcept
- __attribute__((__externally_visible__));
-void operator delete[](void*) noexcept
- __attribute__((__externally_visible__));
-
-void operator delete(void*, std::size_t) noexcept
- __attribute__((__externally_visible__));
-void operator delete[](void*, std::size_t) noexcept
- __attribute__((__externally_visible__));
-
-[[__nodiscard__]] void* operator new(std::size_t, const std::nothrow_t&) noexcept
- __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-[[__nodiscard__]] void* operator new[](std::size_t, const std::nothrow_t&) noexcept
- __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-void operator delete(void*, const std::nothrow_t&) noexcept
- __attribute__((__externally_visible__));
-void operator delete[](void*, const std::nothrow_t&) noexcept
- __attribute__((__externally_visible__));
-
-[[__nodiscard__]] void* operator new(std::size_t, std::align_val_t)
- __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-[[__nodiscard__]] void* operator new(std::size_t, std::align_val_t, const std::nothrow_t&)
- noexcept __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-void operator delete(void*, std::align_val_t)
- noexcept __attribute__((__externally_visible__));
-void operator delete(void*, std::align_val_t, const std::nothrow_t&)
- noexcept __attribute__((__externally_visible__));
-[[__nodiscard__]] void* operator new[](std::size_t, std::align_val_t)
- __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-[[__nodiscard__]] void* operator new[](std::size_t, std::align_val_t, const std::nothrow_t&)
- noexcept __attribute__((__externally_visible__, __alloc_size__ (1), __malloc__));
-void operator delete[](void*, std::align_val_t)
- noexcept __attribute__((__externally_visible__));
-void operator delete[](void*, std::align_val_t, const std::nothrow_t&)
- noexcept __attribute__((__externally_visible__));
-
-void operator delete(void*, std::size_t, std::align_val_t)
- noexcept __attribute__((__externally_visible__));
-void operator delete[](void*, std::size_t, std::align_val_t)
- noexcept __attribute__((__externally_visible__));
-
-
-
-
-[[__nodiscard__]] inline void* operator new(std::size_t, void* __p) noexcept
-{ return __p; }
-[[__nodiscard__]] inline void* operator new[](std::size_t, void* __p) noexcept
-{ return __p; }
-
-
-inline void operator delete (void*, void*) noexcept { }
-inline void operator delete[](void*, void*) noexcept { }
-
-}
-
-
-namespace std
-{
-
-
- template
- [[nodiscard]] constexpr _Tp*
- launder(_Tp* __p) noexcept
- { return __builtin_launder(__p); }
-
-
-
-
- template
- void launder(_Ret (*)(_Args...) noexcept (_NE)) = delete;
- template
- void launder(_Ret (*)(_Args......) noexcept (_NE)) = delete;
-
- void launder(void*) = delete;
- void launder(const void*) = delete;
- void launder(volatile void*) = delete;
- void launder(const volatile void*) = delete;
-
-
-
- inline constexpr size_t hardware_destructive_interference_size = 64;
- inline constexpr size_t hardware_constructive_interference_size = 64;
-
-}
-
-
-
-
-namespace std
-{
-
-
- struct destroying_delete_t
- {
- explicit destroying_delete_t() = default;
- };
-
- inline constexpr destroying_delete_t destroying_delete{};
-}
-
-
-#pragma GCC visibility pop
-# 39 "/usr/include/c++/14.1.1/bits/exception_ptr.h" 2 3
-
-
-# 1 "/usr/include/c++/14.1.1/bits/move.h" 1 3
-# 37 "/usr/include/c++/14.1.1/bits/move.h" 3
-# 1 "/usr/include/c++/14.1.1/type_traits" 1 3
-# 32 "/usr/include/c++/14.1.1/type_traits" 3
-
-# 33 "/usr/include/c++/14.1.1/type_traits" 3
-# 63 "/usr/include/c++/14.1.1/type_traits" 3
-# 1 "/usr/include/c++/14.1.1/bits/version.h" 1 3
-# 47 "/usr/include/c++/14.1.1/bits/version.h" 3
-
-# 48 "/usr/include/c++/14.1.1/bits/version.h" 3
-# 64 "/usr/include/c++/14.1.1/type_traits" 2 3
-
-namespace std __attribute__ ((__visibility__ ("default")))
-{
-
-
- template
- class reference_wrapper;
-# 86 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct integral_constant
- {
- static constexpr _Tp value = __v;
- using value_type = _Tp;
- using type = integral_constant<_Tp, __v>;
- constexpr operator value_type() const noexcept { return value; }
-
-
- constexpr value_type operator()() const noexcept { return value; }
-
- };
-# 106 "/usr/include/c++/14.1.1/type_traits" 3
- template
- using __bool_constant = integral_constant;
-
-
-
- using true_type = __bool_constant;
-
-
- using false_type = __bool_constant;
-
-
-
-
- template
- using bool_constant = __bool_constant<__v>;
-
-
-
-
-
-
- template
- struct enable_if
- { };
-
-
- template
- struct enable_if
- { using type = _Tp; };
-
-
- template
- using __enable_if_t = typename enable_if<_Cond, _Tp>::type;
-
- template
- struct __conditional
- {
- template
- using type = _Tp;
- };
-
- template<>
- struct __conditional
- {
- template
- using type = _Up;
- };
-
-
- template
- using __conditional_t
- = typename __conditional<_Cond>::template type<_If, _Else>;
-
-
- template
- struct __type_identity
- { using type = _Type; };
-
- template
- using __type_identity_t = typename __type_identity<_Tp>::type;
-
- namespace __detail
- {
-
- template
- using __first_t = _Tp;
-
-
- template
- auto __or_fn(int) -> __first_t...>;
-
- template
- auto __or_fn(...) -> true_type;
-
- template
- auto __and_fn(int) -> __first_t...>;
-
- template
- auto __and_fn(...) -> false_type;
- }
-
-
-
-
- template
- struct __or_
- : decltype(__detail::__or_fn<_Bn...>(0))
- { };
-
- template
- struct __and_
- : decltype(__detail::__and_fn<_Bn...>(0))
- { };
-
- template
- struct __not_
- : __bool_constant
- { };
-
-
-
-
-
- template
- inline constexpr bool __or_v = __or_<_Bn...>::value;
- template
- inline constexpr bool __and_v = __and_<_Bn...>::value;
-
- namespace __detail
- {
- template
- struct __disjunction_impl
- { using type = _B1; };
-
- template
- struct __disjunction_impl<__enable_if_t, _B1, _B2, _Bn...>
- { using type = typename __disjunction_impl::type; };
-
- template
- struct __conjunction_impl
- { using type = _B1; };
-
- template
- struct __conjunction_impl<__enable_if_t, _B1, _B2, _Bn...>
- { using type = typename __conjunction_impl::type; };
- }
-
-
- template
- struct conjunction
- : __detail::__conjunction_impl::type
- { };
-
- template<>
- struct conjunction<>
- : true_type
- { };
-
- template
- struct disjunction
- : __detail::__disjunction_impl::type
- { };
-
- template<>
- struct disjunction<>
- : false_type
- { };
-
- template
- struct negation
- : __not_<_Pp>::type
- { };
-
-
-
-
- template
- inline constexpr bool conjunction_v = conjunction<_Bn...>::value;
-
- template
- inline constexpr bool disjunction_v = disjunction<_Bn...>::value;
-
- template
- inline constexpr bool negation_v = negation<_Pp>::value;
-
-
-
-
-
- template
- struct is_reference;
- template
- struct is_function;
- template
- struct is_void;
- template
- struct remove_cv;
- template
- struct is_const;
-
-
- template
- struct __is_array_unknown_bounds;
-
-
-
-
- template
- constexpr true_type __is_complete_or_unbounded(__type_identity<_Tp>)
- { return {}; }
-
- template
- constexpr typename __or_<
- is_reference<_NestedType>,
- is_function<_NestedType>,
- is_void<_NestedType>,
- __is_array_unknown_bounds<_NestedType>
- >::type __is_complete_or_unbounded(_TypeIdentity)
- { return {}; }
-
-
- template
- using __remove_cv_t = typename remove_cv<_Tp>::type;
-
-
-
-
-
- template
- struct is_void
- : public false_type { };
-
- template<>
- struct is_void
- : public true_type { };
-
- template<>
- struct is_void
- : public true_type { };
-
- template<>
- struct is_void
- : public true_type { };
-
- template<>
- struct is_void
- : public true_type { };
-
-
- template
- struct __is_integral_helper
- : public false_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
-
-
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
- template<>
- struct __is_integral_helper
- : public true_type { };
-
-
-
-
- __extension__
- template<>
- struct __is_integral_helper<__int128>
- : public true_type { };
-
- __extension__
- template<>
- struct __is_integral_helper
- : public true_type { };
-# 460 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_integral
- : public __is_integral_helper<__remove_cv_t<_Tp>>::type
- { };
-
-
- template
- struct __is_floating_point_helper
- : public false_type { };
-
- template<>
- struct __is_floating_point_helper
- : public true_type { };
-
- template<>
- struct __is_floating_point_helper
- : public true_type { };
-
- template<>
- struct __is_floating_point_helper
- : public true_type { };
-# 513 "/usr/include/c++/14.1.1/type_traits" 3
- template<>
- struct __is_floating_point_helper<__float128>
- : public true_type { };
-
-
-
-
- template
- struct is_floating_point
- : public __is_floating_point_helper<__remove_cv_t<_Tp>>::type
- { };
-
-
-
- template
- struct is_array
- : public __bool_constant<__is_array(_Tp)>
- { };
-# 545 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct __is_pointer_helper
- : public false_type { };
-
- template
- struct __is_pointer_helper<_Tp*>
- : public true_type { };
-
-
- template
- struct is_pointer
- : public __is_pointer_helper<__remove_cv_t<_Tp>>::type
- { };
-
-
- template
- struct is_lvalue_reference
- : public false_type { };
-
- template
- struct is_lvalue_reference<_Tp&>
- : public true_type { };
-
-
- template
- struct is_rvalue_reference
- : public false_type { };
-
- template
- struct is_rvalue_reference<_Tp&&>
- : public true_type { };
-
-
-
- template
- struct is_member_object_pointer
- : public __bool_constant<__is_member_object_pointer(_Tp)>
- { };
-# 601 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_member_function_pointer
- : public __bool_constant<__is_member_function_pointer(_Tp)>
- { };
-# 622 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_enum
- : public __bool_constant<__is_enum(_Tp)>
- { };
-
-
- template
- struct is_union
- : public __bool_constant<__is_union(_Tp)>
- { };
-
-
- template
- struct is_class
- : public __bool_constant<__is_class(_Tp)>
- { };
-
-
-
- template
- struct is_function
- : public __bool_constant<__is_function(_Tp)>
- { };
-# 661 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_null_pointer
- : public false_type { };
-
- template<>
- struct is_null_pointer
- : public true_type { };
-
- template<>
- struct is_null_pointer
- : public true_type { };
-
- template<>
- struct is_null_pointer
- : public true_type { };
-
- template<>
- struct is_null_pointer
- : public true_type { };
-
-
-
- template
- struct __is_nullptr_t
- : public is_null_pointer<_Tp>
- { } __attribute__ ((__deprecated__ ("use '" "std::is_null_pointer" "' instead")));
-
-
-
-
-
-
- template
- struct is_reference
- : public __bool_constant<__is_reference(_Tp)>
- { };
-# 715 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_arithmetic
- : public __or_, is_floating_point<_Tp>>::type
- { };
-
-
- template
- struct is_fundamental
- : public __or_, is_void<_Tp>,
- is_null_pointer<_Tp>>::type
- { };
-
-
-
- template
- struct is_object
- : public __bool_constant<__is_object(_Tp)>
- { };
-# 741 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_member_pointer;
-
-
- template
- struct is_scalar
- : public __or_, is_enum<_Tp>, is_pointer<_Tp>,
- is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
- { };
-
-
- template
- struct is_compound
- : public __bool_constant::value> { };
-
-
-
- template
- struct is_member_pointer
- : public __bool_constant<__is_member_pointer(_Tp)>
- { };
-# 779 "/usr/include/c++/14.1.1/type_traits" 3
- template
- struct is_same;
-
-
- template
- using __is_one_of = __or_...>;
-
-
- __extension__
- template
- using __is_signed_integer = __is_one_of<__remove_cv_t<_Tp>,
- signed char, signed short, signed int, signed long,
- signed long long
-
- , signed __int128
-# 804 "/usr/include/c++/14.1.1/type_traits" 3
- >;
-
-
- __extension__
- template
- using __is_unsigned_integer = __is_one_of<__remove_cv_t<_Tp>,
- unsigned char, unsigned short, unsigned int, unsigned long,
- unsigned long long
-
- , unsigned __int128
-# 824 "/usr/include/c++/14.1.1/type_traits" 3
- >;
-
-
- template
- using __is_standard_integer
- = __or_<__is_signed_integer<_Tp>, __is_unsigned_integer<_Tp>>;
-
-
- template using __void_t = void;
-
-
-
-
-
- template
- struct is_const
- : public false_type { };
-
- template
- struct is_const<_Tp const>
- : public true_type { };
-
-
- template
- struct is_volatile
- : public false_type { };
-
- template
- struct is_volatile<_Tp volatile>
- : public true_type { };
-
-
- template
- struct is_trivial
- : public __bool_constant<__is_trivial(_Tp)>
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
- template
- struct is_trivially_copyable
- : public __bool_constant<__is_trivially_copyable(_Tp)>
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
- template
- struct is_standard_layout
- : public __bool_constant<__is_standard_layout(_Tp)>
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
-
-
-
-
- template
- struct
- __attribute__ ((__deprecated__ ("use '" "is_standard_layout && is_trivial" "' instead")))
- is_pod
- : public __bool_constant<__is_pod(_Tp)>
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
-
-
-
- template
- struct
- [[__deprecated__]]
- is_literal_type
- : public __bool_constant<__is_literal_type(_Tp)>
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
- template
- struct is_empty
- : public __bool_constant<__is_empty(_Tp)>
- { };
-
-
- template
- struct is_polymorphic
- : public __bool_constant<__is_polymorphic(_Tp)>
- { };
-
-
-
-
- template
- struct is_final
- : public __bool_constant<__is_final(_Tp)>
- { };
-
-
-
- template
- struct is_abstract
- : public __bool_constant<__is_abstract(_Tp)>
- { };
-
-
- template::value>
- struct __is_signed_helper
- : public false_type { };
-
- template
- struct __is_signed_helper<_Tp, true>
- : public __bool_constant<_Tp(-1) < _Tp(0)>
- { };
-
-
-
- template
- struct is_signed
- : public __is_signed_helper<_Tp>::type
- { };
-
-
- template
- struct is_unsigned
- : public __and_, __not_>>::type
- { };
-
-
- template
- _Up
- __declval(int);
-
- template
- _Tp
- __declval(long);
-
-
- template
- auto declval() noexcept -> decltype(__declval<_Tp>(0));
-
- template
- struct remove_all_extents;
-
-
- template
- struct __is_array_known_bounds
- : public false_type
- { };
-
- template
- struct __is_array_known_bounds<_Tp[_Size]>
- : public true_type
- { };
-
- template
- struct __is_array_unknown_bounds
- : public false_type
- { };
-
- template
- struct __is_array_unknown_bounds<_Tp[]>
- : public true_type
- { };
-# 1006 "/usr/include/c++/14.1.1/type_traits" 3
- struct __do_is_destructible_impl
- {
- template().~_Tp())>
- static true_type __test(int);
-
- template
- static false_type __test(...);
- };
-
- template
- struct __is_destructible_impl
- : public __do_is_destructible_impl
- {
- using type = decltype(__test<_Tp>(0));
- };
-
- template,
- __is_array_unknown_bounds<_Tp>,
- is_function<_Tp>>::value,
- bool = __or_, is_scalar<_Tp>>::value>
- struct __is_destructible_safe;
-
- template
- struct __is_destructible_safe<_Tp, false, false>
- : public __is_destructible_impl::type>::type
- { };
-
- template
- struct __is_destructible_safe<_Tp, true, false>
- : public false_type { };
-
- template
- struct __is_destructible_safe<_Tp, false, true>
- : public true_type { };
-
-
-
- template
- struct is_destructible
- : public __is_destructible_safe<_Tp>::type
- {
- static_assert(std::__is_complete_or_unbounded(__type_identity<_Tp>{}),
- "template argument must be a complete class or an unbounded array");
- };
-
-
-
-
-
-
-
- struct __do_is_nt_destructible_impl
- {
- template
- static __bool_constant().~_Tp())>
- __test(int);
-
- template
- static false_type __test(...);
- };
-
- template
- struct __is_nt_destructible_impl
- : public __do_is_nt_destructible_impl
- {
- using type = decltype(__test<_Tp>(0));
- };
-
- template,
- __is_array_unknown_bounds<_Tp>,
- is_function<_Tp>>::value,
- bool = __or_, is_scalar<_Tp>>::value>
- struct __is_nt_destructible_safe;
-
- template
- struct __is_nt_destructible_safe<_Tp, false, false>
- : public __is_nt_destructible_impl