From fb094b222027aad36ebc294c0b21909dfe20b3f9 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 12 Dec 2025 14:45:09 +0100 Subject: chore: performance improvements and tweaks. Signed-off-by: Amlal El Mahrouss --- examples/example_01_hello_world/posix.json | 2 +- examples/example_01_hello_world/win64.json | 2 +- examples/example_02_libnebuild/posix.json | 2 +- examples/example_02_libnebuild/win64.json | 2 +- examples/example_03_hello_world_toml/posix.toml | 2 +- examples/example_03_hello_world_toml/win64.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'examples') diff --git a/examples/example_01_hello_world/posix.json b/examples/example_01_hello_world/posix.json index 09cbef7..197e4a2 100644 --- a/examples/example_01_hello_world/posix.json +++ b/examples/example_01_hello_world/posix.json @@ -3,7 +3,7 @@ "compiler_std": "c++20", "headers_path": ["lib"], "sources_path": ["hello_world.cc"], - "output_name": "hello_world.elf", + "output_name": "./hello_world.elf", "compiler_flags": ["-fPIC"], "cpp_macros": ["FOO_MACRO"], "run_after_build": true diff --git a/examples/example_01_hello_world/win64.json b/examples/example_01_hello_world/win64.json index 4af5bdd..4545228 100644 --- a/examples/example_01_hello_world/win64.json +++ b/examples/example_01_hello_world/win64.json @@ -3,7 +3,7 @@ "compiler_std": "c++20", "headers_path": ["lib"], "sources_path": ["hello_world.cc"], - "output_name": "hello_world.elf", + "output_name": "./hello_world.elf", "compiler_flags": ["-fPIC"], "cpp_macros": ["FOO_MACRO"], "run_after_build": true diff --git a/examples/example_02_libnebuild/posix.json b/examples/example_02_libnebuild/posix.json index 809cb67..d7ef767 100644 --- a/examples/example_02_libnebuild/posix.json +++ b/examples/example_02_libnebuild/posix.json @@ -8,7 +8,7 @@ "sources_path": [ "libnebuild.cc" ], - "output_name": "libnebuild.elf", + "output_name": "./libnebuild.elf", "compiler_flags": [ "-L/usr/lib", "-lNeBuildKit" diff --git a/examples/example_02_libnebuild/win64.json b/examples/example_02_libnebuild/win64.json index dcd1142..094208b 100644 --- a/examples/example_02_libnebuild/win64.json +++ b/examples/example_02_libnebuild/win64.json @@ -8,7 +8,7 @@ "sources_path": [ "libbtb.cc" ], - "output_name": "libbtb.exe", + "output_name": "./libbtb.exe", "compiler_flags": [ "-lNeBuild" ], diff --git a/examples/example_03_hello_world_toml/posix.toml b/examples/example_03_hello_world_toml/posix.toml index e8595d4..a384ddb 100644 --- a/examples/example_03_hello_world_toml/posix.toml +++ b/examples/example_03_hello_world_toml/posix.toml @@ -2,7 +2,7 @@ compiler_path = "clang++" compiler_std = "c++20" headers_path = [ "lib" ] sources_path = [ "hello_world.cc" ] -output_name = "hello_world.elf" +output_name = "./hello_world.elf" compiler_flags = [ "-fPIC" ] cpp_macros = [ "FOO_MACRO" ] run_after_build = true diff --git a/examples/example_03_hello_world_toml/win64.toml b/examples/example_03_hello_world_toml/win64.toml index c8001a4..6f30476 100644 --- a/examples/example_03_hello_world_toml/win64.toml +++ b/examples/example_03_hello_world_toml/win64.toml @@ -2,7 +2,7 @@ compiler_path = "x86_64-w64-mingw32-g++" compiler_std = "c++20" headers_path = [ "lib" ] sources_path = [ "hello_world.cc" ] -output_name = "hello_world.elf" +output_name = "./hello_world.elf" compiler_flags = [ "-fPIC" ] cpp_macros = [ "FOO_MACRO" ] run_after_build = true -- cgit v1.2.3