summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-16 19:16:11 +0200
committerAmlal <amlal@nekernel.org>2025-08-16 19:17:09 +0200
commit95db0ac7dcb8625c5a1e92408c0c02962b205871 (patch)
treeb65844000839103efb40c635337339dc8f193f89
parent70945244a35e0e6d2a2e0f84ae83f31b9898a0ca (diff)
feat: core: include <boost/config.hpp> inside dev/lib/corev1.0.4
Signed-off-by: Amlal <amlal@nekernel.org>
-rw-r--r--dev/lib/core/includes.hpp1
-rwxr-xr-xtools/hpptest.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/dev/lib/core/includes.hpp b/dev/lib/core/includes.hpp
index b516e5f..e482a7c 100644
--- a/dev/lib/core/includes.hpp
+++ b/dev/lib/core/includes.hpp
@@ -7,6 +7,7 @@
#pragma once
+#include <boost/config.hpp>
#include <boost/core/nvp.hpp>
#include <boost/core/demangle.hpp>
#include <boost/core/null_deleter.hpp>
diff --git a/tools/hpptest.py b/tools/hpptest.py
index 2cf8e9d..f9fcd1c 100755
--- a/tools/hpptest.py
+++ b/tools/hpptest.py
@@ -5,6 +5,6 @@ import sys, os
if __name__ == '__main__':
if len(sys.argv) == 2:
- os.system(f"clang++ -std=c++20 -DSOCL_HPPTEST '-DSOCL_HPPTEST_ASSERT(x)=static_assert(x, #x)' {sys.argv[1]} -o a.out && cat {sys.argv[1]}")
+ os.system(f"clang++ -std=c++20 -DSOCL_HPPTEST '-DSOCL_HPPTEST_ASSERT(x)=static_assert(x, #x)' {sys.argv[1]}")
print("[TEST] HEADER COMPILATION PASSES")