diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-01-30 12:06:43 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-01-30 14:01:10 +0100 |
commit | c6a79583ed592fc8381c681d1829ce59b9816f8d (patch) | |
tree | ea51b1dd48a517c756d6f2d9da97fcb68f299c29 /TARGETS | |
parent | 80eae6b8be2f88a1d4db03477416badfc652744d (diff) | |
download | justbuild-c6a79583ed592fc8381c681d1829ce59b9816f8d.tar.gz |
just: default to the unknown tool chain
In order to be portable, we should not make any assumptions about
the preferred toolchains of the users and instead default to the
toolchain making the least assumptions about the compiler actually
used.
Diffstat (limited to 'TARGETS')
-rw-r--r-- | TARGETS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ , "COMPILER_FAMILY": [ "The compiler family to use as (cross) toolchain." , "" - , "Supported values are \"clang\" (the default), \"gcc\", and \"unkown\"." + , "Supported values are \"unkonwn\" (the default), \"clang\", and \"gcc\"." , "The unknown compiler family tries to not make any assumptions on the" , "used C and C++ compilers and uses the generic \"cc\" and \"c++\" as" , "names for the respective compilers; typically used in conjunction with" @@ -108,7 +108,7 @@ } ] , [ "COMPILER_FAMILY" - , {"type": "var", "name": "COMPILER_FAMILY", "default": "clang"} + , {"type": "var", "name": "COMPILER_FAMILY", "default": "unknown"} ] ] , "body": |