diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 09:21:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 09:21:46 +0100 |
| commit | dc87375b9a0103e8c9dd39393abc21113e2dd917 (patch) | |
| tree | 56863a984b488d880d9968c8af7ba9bcc1c7c400 /examples | |
| parent | 8cf214b3e06556aa0aa18133aac60ddbedebc06e (diff) | |
| parent | 6132d2c6a751ebffc29f950ca3755a05595dd99e (diff) | |
Merge pull request #7 from nekernel-org/dev
feat: new documented codebase and improvements.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/example_01_hello_world/posix.json | 2 | ||||
| -rw-r--r-- | examples/example_02_libnebuild/posix.json | 2 | ||||
| -rw-r--r-- | examples/example_03_hello_world_toml/posix.toml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/example_01_hello_world/posix.json b/examples/example_01_hello_world/posix.json index c3c8151..09cbef7 100644 --- a/examples/example_01_hello_world/posix.json +++ b/examples/example_01_hello_world/posix.json @@ -1,5 +1,5 @@ { - "compiler_path": "g++", + "compiler_path": "clang++", "compiler_std": "c++20", "headers_path": ["lib"], "sources_path": ["hello_world.cc"], diff --git a/examples/example_02_libnebuild/posix.json b/examples/example_02_libnebuild/posix.json index 989e712..b8145bd 100644 --- a/examples/example_02_libnebuild/posix.json +++ b/examples/example_02_libnebuild/posix.json @@ -1,5 +1,5 @@ { - "compiler_path": "g++", + "compiler_path": "clang++", "compiler_std": "c++20", "headers_path": [ "../../dev", diff --git a/examples/example_03_hello_world_toml/posix.toml b/examples/example_03_hello_world_toml/posix.toml index 4f71f7d..e8595d4 100644 --- a/examples/example_03_hello_world_toml/posix.toml +++ b/examples/example_03_hello_world_toml/posix.toml @@ -1,4 +1,4 @@ -compiler_path = "g++" +compiler_path = "clang++" compiler_std = "c++20" headers_path = [ "lib" ] sources_path = [ "hello_world.cc" ] |
