Sdktool: Add comment about C/C++ toolchain pairs

Fixes: QTCREATORBUG-32559
Change-Id: I96b46f85cb1dbb00fcfb22c0ae5d6ba9e7369ffe
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Eike Ziller
2025-03-25 09:22:02 +01:00
parent 5ad0d1c4b7
commit a106c7cc02
2 changed files with 6 additions and 1 deletions

View File

@@ -284,6 +284,8 @@
\row
\li \c {--language <ID>}
\li ID of the input language of the toolchain: \c C or \c Cxx.
When you register a C or C++ compiler, make sure to register the
corresponding C++ or C compiler as well.
\li \inlineimage ok.png
\row
\li \c {--name <NAME>}

View File

@@ -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)