aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/sdktool/addtoolchainoperation.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2025-03-25 09:22:02 +0100
committerEike Ziller <[email protected]>2025-03-26 07:21:11 +0000
commita106c7cc020cf0f7e530831854c7787dd2513403 (patch)
tree2867739207ff439f816a19a30d63fd6d0d4db187 /src/tools/sdktool/addtoolchainoperation.cpp
parent5ad0d1c4b711a96965c654c93ea99f46c66acf11 (diff)
Sdktool: Add comment about C/C++ toolchain pairs
Fixes: QTCREATORBUG-32559 Change-Id: I96b46f85cb1dbb00fcfb22c0ae5d6ba9e7369ffe Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/tools/sdktool/addtoolchainoperation.cpp')
-rw-r--r--src/tools/sdktool/addtoolchainoperation.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/sdktool/addtoolchainoperation.cpp b/src/tools/sdktool/addtoolchainoperation.cpp
index 74f4965cf87..70f1c5f262e 100644
--- a/src/tools/sdktool/addtoolchainoperation.cpp
+++ b/src/tools/sdktool/addtoolchainoperation.cpp
@@ -50,11 +50,14 @@ QString AddToolChainOperation::argumentsHelpText() const
return QString(
" --id <ID> id of the new tool chain (required).\n"
" --language <ID> input language id of the new tool chain (required).\n"
+ " When you register a C or C++ compiler, make sure to"
+ " register the corresponding C++ or C compiler as well."
" --name <NAME> display name of the new tool chain (required).\n"
" --path <PATH> path to the compiler (required).\n"
" --abi <ABI STRING> ABI of the compiler (required).\n"
" --supportedAbis <ABI STRING>,<ABI STRING> list of ABIs supported by the compiler.\n"
- " <KEY> <TYPE:VALUE> extra key value pairs\n");
+ " <KEY> <TYPE:VALUE> extra key value pairs\n"
+ );
}
bool AddToolChainOperation::setArguments(const QStringList &args)