diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-22 07:37:36 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-22 08:13:11 +0100 |
commit | af0f01058a0083d93eb5b41006a817f0474b4787 (patch) | |
tree | 02a75c9edd9b2ea92a25b5723b9676d51446cfdd | |
parent | e0009216ee830e8da023047ed6fe187f48f612d1 (diff) |
Use correct host/build identifier string *-cxx instead of *-cpp
-rw-r--r-- | src/ctor.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -267,12 +267,12 @@ namespace cfg constexpr auto builddir = "builddir"; constexpr auto host_cc = "host-cc"; -constexpr auto host_cxx = "host-cpp"; +constexpr auto host_cxx = "host-cxx"; constexpr auto host_ar = "host-ar"; constexpr auto host_ld = "host-ld"; constexpr auto build_cc = "build-cc"; -constexpr auto build_cxx = "build-cpp"; +constexpr auto build_cxx = "build-cxx"; constexpr auto build_ar = "build-ar"; constexpr auto build_ld = "build-ld"; |