Module cpp
The cpp
module contains the properties and rules for toolchains of the C/C++ family. On Apple platforms this includes support for Objective-C/C++.
General Properties
Property | Type | Since | Default | Description |
---|---|---|---|---|
allowUnresolvedSymbols | bool | 1.2 | false | Switch this on if you want the linking step to succeed even if the resulting binary contains unresolved symbols. Normally this makes little sense, but in special cases it is possible that the respective symbols will be available at load time even if they are not present during linking. |
architecture | string | 1.0 | qbs.architecture | Target architecture. See qbs.architecture . |
debugInformation | bool | 1.0 | qbs.debugInformation | Generate debug information. See qbs.debugInformation . |
separateDebugInformation | bool | 1.4 | false for gcc/clang, true for MSVC | Whether to store debug information in an external file or bundle instead of within the binary. |
defines | stringList | 1.0 | undefined | List of preprocessor macros that gets passed to the compiler. To set macro values use the following syntax: cpp.defines: ["USE_COLORS=1", 'COLOR_STR="blanched almond"'] |
platformDefines | stringList | 1.0 | undefined | List of preprocessor macros that are used for all projects that are built for the current target platform. User project files usually do not set this property. |
includePaths | pathList | 1.0 | undefined | List of include paths. Relative paths are considered to be relative to the .qbs product file they are used in. |
systemIncludePaths | pathList | 1.0 | undefined | List of include paths that are passed as system include paths to the compiler. For header files in those paths warnings will be ignored. Relative paths are considered to be relative to the .qbs product file they are used in. |
systemRunPaths | stringList | 1.6 | Auto-detected for host builds on Linux via ldconfig , ["/lib", "/usr/lib"] otherwise on Unix, empty on Windows | The paths the dynamic linker uses on process start-up to locate dynamic libraries. |
libraryPaths | pathList | 1.0 | undefined | List of library search paths. Relative paths are considered to be relative to the .qbs product file they are used in. |
dynamicLibraries | stringList | 1.0 | undefined | List of dynamic libraries to be linked. If the library is part of your project, consider using a Depends item instead. |
staticLibraries | stringList | 1.0 | undefined | List of static libraries to be linked. If the library is part of your project, consider using a Depends item instead. |
prefixHeaders | pathList | 1.0.1 | undefined | List of files to automatically include at the beginning of each source file in the product. |
optimization | string | 1.0 | qbs.optimization | Optimization level. See qbs.optimization . |
treatWarningsAsErrors | bool | 1.0 | false | Warnings will be handled as errors and cause the build to fail. |
useCPrecompiledHeader, useCxxPrecompiledHeader, useObjcPrecompiledHeader, useObjcxxPrecompiledHeader | bool | 1.5 | false | Specifies whether to use a precompiled header for the respective language, if one is present (see below for the associated file tags). |
warningLevel | string | 1.0 | "all" | Specifies the warning level for the compiler - "none" or "all" . |
driverFlags | stringList | 1.6 | undefined | Flags that are added to all compilation and linking commands performed by the compiler driver, independently of the language. |
commonCompilerFlags | stringList | 1.0.1 | undefined | Flags that are added to all compilation commands independently of the language. |
compilerVersionMajor | int | 1.4 | undefined | The major version of the compiler. |
compilerVersionMinor | int | 1.4 | undefined | The minor version of the compiler. |
compilerVersionPatch | int | 1.4 | undefined | The patch level component of the compiler version. |
assemblerFlags | stringList | 1.5 | undefined | Additional flags for the assembler. |
cppFlags | stringList | 1.0 | undefined | Additional flags for the C preprocessor. |
cFlags | stringList | 1.0 | undefined | Additional flags for the C compiler. |
cxxFlags | stringList | 1.0 | undefined | Additional flags for the C++ compiler. |
cLanguageVersion | string | 1.4 | undefined | The version of the C standard with which the code must comply. If this property is set, corresponding compiler and/or linker flags will be added, depending on the toolchain. If the value is left undefined, the compiler default will be used. Possible values include: "c89" , "c99" , "c11" |
cxxLanguageVersion | string | 1.4 | undefined | The version of the C++ standard with which the code must comply. If this property is set, corresponding compiler and/or linker flags will be added, depending on the toolchain. If the value is left undefined, the compiler default will be used. Possible values include: "c++98" , "c++11" , "c++14" |
cxxStandardLibrary | string | 1.4 | undefined | The C++ standard library to link to. If this property is set, corresponding compiler and/or linker flags will be added, assuming the value is valid for the current toolchain. If the value is left undefined, the compiler default will be used. Possible values include: "libstdc++" , "libc++" |
objcFlags | stringList | 1.0 | undefined | Additional flags for the Objective-C compiler. |
objcxxFlags | stringList | 1.0 | undefined | Additional flags for the Objective-C++ compiler. |
linkerFlags | stringList | 1.0 | undefined | Additional flags for the linker. These flags should not be escaped using the -Wl or -Xlinker syntaxes, as Qbs will do this automatically based on the linker being used. See cpp.linkerMode for additional information. |
assemblerName | string | 1.5 | determined by qbs-setup-toolchains | Name of the assembler binary. This is set in the build profile. |
assemblerPath | string | 1.5 | determined by qbs-setup-toolchains | Full path of the assembler binary. This is set in the build profile. |
compilerName | string | 1.0 | determined by qbs-setup-toolchains | Name of the main compiler binary. This is set in the build profile. |
compilerPath | string | 1.0 | determined by qbs-setup-toolchains | Full path of the main compiler binary. This is set in the build profile. If the toolchain provides different compilers for different languages, then compilerPathByLanguage is used. |
compilerPathByLanguage | string to string map | 1.3 | determined by qbs-setup-toolchains | Maps file tags to full paths of compiler binaries. This is set in the build profile. |
compilerWrapper | stringList | 1.1 | undefined | Wrapper binary and its arguments for wrapping compiler calls. This is useful for compiler wrappers like ccache and alike. |
linkerName | string | 1.1.1 | determined by qbs-setup-toolchains | Name of the linker binary. This is set in the build profile. |
linkerPath | string | 1.1.1 | determined by qbs-setup-toolchains | Full path of the linker binary. This is set in the build profile. |
linkerWrapper | stringList | 1.6.2 | undefined | Wrapper binary and its arguments for wrapping linker calls. This is useful for linker wrappers as needed by Bullseye Coverage, for example. |
entryPoint | string | 1.3 | undefined | Name of the entry point of an executable or dynamic library. If this property is undefined, the toolchain's default is used. |
runtimeLibrary | string | 1.3.3 | "dynamic" for MSVC, undefined for others | Type of the used runtime library. Accepted values are "static" and "dynamic" . If this property is set to undefined , then the default runtime library of the toolchain is used.Note: For MSVC the default value is Note: At the moment this property is only functional for MSVC. |
enableExceptions | bool | 1.5 | true | Whether to enable exceptions in C++ code. |
exceptionHandlingModel | string | 1.5 | "default" | The exception handling model to use. For MSVC, this can be "default" , "seh" or "externc" . For all other compilers, "default" indicates the default or only exception handling model. |
enableRtti | bool | 1.5 | undefined | Whether to enable runtime type information in C++ code. |
enableReproducibleBuilds | bool | 1.5 | false | Try to generate reproducible object files. Some compilers (notably gcc) use random numbers for generating symbol names that have to be different in every compilation unit. This is avoided by setting this property to true . |
Properties Specific to Apple Platforms
Property | Type | Since | Default | Description |
---|---|---|---|---|
dsymutilFlags | stringList | 1.4.1 | undefined | Additional flags for the dsymutil tool. |
dsymutilPath | string | 1.4 | determined by qbs-setup-toolchains | Full path of the dsymutil binary. This is set in the build profile. |
frameworkPaths | pathList | 1.0 | undefined | List of framework search paths. Relative paths are considered to be relative to the .qbs product file they are used in. |
systemFrameworkPaths | pathList | 1.0 | undefined | List of framework search paths. Relative paths are considered to be relative to the .qbs product file they are used in. Header files in frameworks in those paths will not cause warnings. |
frameworks | stringList | 1.0 | undefined | List of frameworks to be linked. If the framework is part of your project, consider using a Depends item instead. |
weakFrameworks | stringList | 1.0 | undefined | List of frameworks to be weakly linked. If the framework is part of your project, consider using a Depends item instead. |
automaticReferenceCounting | bool | 1.4 | undefined | Whether to enable Automatic Reference Counting (ARC) for Objective-C and Objective-C++ source code. If undefined , uses the compiler default (probably false ). |
requireAppExtensionSafeApi | bool | 1.4 | undefined | Whether to enforce the use of only app-extension-safe APIs on Apple platforms. This is necessary for building Application Extensions in OS X Yosemite and iOS 8 and above. If undefined , uses the compiler and linker defaults (probably false ). |
minimumIosVersion | string | 1.0 | undefined, but may be set by generated profiles | A version number in the format [major].[minor] indicating the earliest version of iOS that the product should run on. Passes -miphoneos-version-min=<version> to the compiler. If undefined, compiler defaults will be used. |
minimumOsxVersion | string | 1.0.1 | undefined, but may be set by generated profiles | Deprecated in Qbs 1.5.2. Use minimumMacosVersion instead. |
minimumMacosVersion | string | 1.5.2 | undefined, but may be set by generated profiles | A version number in the format [major].[minor] indicating the earliest version of macOS that the product should run on. Passes -mmacosx-version-min=<version> to the compiler. If undefined, compiler defaults will be used. |
minimumWatchosVersion | string | 1.5 | undefined, but may be set by generated profiles | A version number in the format [major].[minor] indicating the earliest version of Apple watchOS that the product should run on. If undefined, compiler defaults will be used. |
minimumTvosVersion | string | 1.5 | undefined, but may be set by generated profiles | A version number in the format [major].[minor] indicating the earliest version of Apple tvOS that the product should run on. If undefined, compiler defaults will be used. |
Properties Specific to Unix Platforms
Property | Type | Since | Default | Description |
---|---|---|---|---|
archiverName | string | 1.0 | "ar" | Name of the archiver binary. This is set in the build profile. |
archiverPath | string | 1.0 | determined by qbs-setup-toolchains | Full path of the archiver binary. This is set in the build profile. |
exportedSymbolsCheckMode | string | 1.4.1 | "ignore-undefined" | Controls how Qbs determines whether an updated dynamic library causes relinking of dependents. The default value is "ignore-undefined" , which means that undefined symbols being added or removed do not cause any relinking. If that should happen, for example because dependent products are linked with an option such as "--no-undefined" , then this property can be set to "strict" . |
linkerMode | string | 1.6 | "automatic" | Controls whether to automatically use an appropriate compiler frontend in place of the system linker when linking binaries. The default is "automatic" , which chooses either the C++ compiler, C compiler, or system linker specified by the linkerName and linkerPath properties, depending on the type of object files present on the linker command line. "manual" allows you to explicitly specify the linker using the linkerName and linkerPath properties. |
nmName | string | 1.2 | "nm" | Name of the nm binary. This is set in the build profile. |
nmPath | string | 1.2 | determined by qbs-setup-toolchains | Full path of the nm binary. This is set in the build profile. |
objcopyName | string | 1.4 | "objcopy" | Name of the objcopy binary. This is set in the build profile. |
objcopyPath | string | 1.4 | determined by qbs-setup-toolchains | Full path of the objcopy binary. This is set in the build profile. |
stripName | string | 1.4 | "strip" | Name of the strip binary. This is set in the build profile. |
stripPath | string | 1.4 | determined by qbs-setup-toolchains | Full path of the strip binary. This is set in the build profile. |
positionIndependentCode | bool | 1.0 | undefined | Generate position independent code. If this property is undefined , then position independent code is generated for libraries, but not for applications. |
rpaths | stringList | 1.0 | undefined | List of rpaths that are passed to the linker. Paths that also appear in systemRunPaths are ignored. |
sonamePrefix | string | 1.5 | undefined | If defined, the value of this variable is used as a path to be prepended to the built shared library's SONAME identifier. The SONAME (LC_ID_DYLIB on Apple platforms, DT_SONAME on other Unix-like platforms) is the identifier that the dynamic linker will later use to reference the library. In general, this reference may be a library name or full library path.On Apple platforms, the path may contain the following placeholders:
In most cases, using For more information, see the dyld documentation on dynamic library install names. |
soVersion | string | 1.7 | Major part of product.version if a version is set, otherwise the empty string | The version to be appended to the soname in ELF shared libraries. |
useRPaths | bool | 1.3 | true | Set this property to false to prevent the linker from writing rpaths to the binary. |
visibility | string | 1.0 | "default" | Visibility level for exported symbols. Possible values include: "default" , "hidden" , "hiddenInlines" , and "minimal" , which combines "hidden" and "hiddenInlines" . |
Properties Specific to Windows
Property | Type | Since | Default | Description |
---|---|---|---|---|
generateManifestFile | bool | 1.5.0 | true | Specifies whether to auto-generate a manifest file and include it in the binary. Disable this property if you provide your own rc file. |
windowsApiCharacterSet | string | 1.0.1 | "unicode" | Specifies the character set used in the Win32 API. "unicode" will define the preprocessor symbols UNICODE and _UNICODE, "mbcs" will define _MBCS, and setting the value to undefined will use the default character set. |
minimumWindowsVersion | string | 1.0 | undefined, but may be set by generated profiles | A version number in the format [major].[minor] indicating the earliest version of Windows that the product should run on. Defines WINVER, _WIN32_WINNT, and _WIN32_WINDOWS, and applies a version number to the linker flags /SUBSYSTEM and /OSVERSION for MSVC or --major-subsystem-version, --minor-subsystem-version, --major-os-version and --minor-os-version for MinGW. If undefined, compiler defaults will be used. |
Advanced Properties
Property | Type | Since | Default | Description |
---|---|---|---|---|
compilerDefines | stringList | 1.0 | undefined | List of preprocessor macros that are used for all projects that are using the current toolchain. User project files usually do not set this property. |
compilerIncludePaths | pathList | 1.6 | determined automatically | List of #include search paths that are used for all projects that are using the current toolchain. Determined automatically by probing the compiler. User project files usually do not set this property. |
compilerFrameworkPaths | pathList | 1.6 | determined automatically | List of framework search paths that are used for all projects that are using the current toolchain. Determined automatically by probing the compiler. User project files usually do not set this property. |
compilerLibraryPaths | pathList | 1.6 | determined automatically | List of library search paths that are used for all projects that are using the current toolchain. Determined automatically by probing the compiler. User project files usually do not set this property. |
Relevant File Tags
Tag | Auto-tagged File Names | Since | Description |
---|---|---|---|
"application" | n/a | 1.0.1 | The rule that creates executable files (typically via a linker) attaches this tag to its output artifact. |
"asm" | *.s (for GCC-like toolchains), *.asm (for MSVC) | 1.1.0 | Source files with this tag serve as inputs to a rule invoking the toolchain's assembler. One object file is generated for each such file. |
"asm_cpp" | *.S , *.sx | 1.1.0 | Like "asm" , but for source files that need preprocessing. This tag only has an effect with GCC-like toolchains. |
"c" | *.c | 1.0.1 | Source files with this tag serve as inputs to a rule invoking the toolchain's C compiler. One object file is generated for each such file. |
"cpp" | *.C , *.cpp , *.cxx , *.c++ , *.cc | 1.0.1 | Source files with this tag serve as inputs to a rule invoking the toolchain's C++ compiler. One object file is generated for each such file. |
\c{"c_pch_src"}, "cpp_pch_src" , "objc_pch_src" , "objcpp_pch_src" | - | 1.5 | Files with this tag will be turned into precompiled headers for C, C++, Objective-C and Objective-C++, respectively. There can be only one such file per product and language. |
"dynamiclibrary" | n/a | 1.0.1 | The rule that creates dynamic libraries (typically via a linker) attaches this tag to its output artifact. |
"hpp" | *.h , *.H , *.hpp , *.hxx , *.h++ | 1.0.1 | This tag is used for header files (C, C++, Objective-C and Objective-C++). No rule in this module generates output artifacts from such files directly, but the compiler rule will have a dependency on all rules that create such files. |
"linkerscript" | - | 1.5.0 | This tag is used for ld linker scripts. You can provide such a file if you need to replace the default linker script. This file tag only has an effect with GCC-like toolchains. The linker needs to be ld -compatible. |
"obj" | n/a | 1.0.1 | The rule that creates object files (typically via a compiler) attaches this tag to its output artifacts. Such files are usually intermediate artifacts of the build process and rarely need to be referenced in project files. |
"objc" | *.m | 1.1.0 | Source files with this tag serve as inputs to a rule invoking the toolchain's Objective-C compiler. One object file is generated for each such file. |
"objcpp" | *.mm | 1.1.0 | Source files with this tag serve as inputs to a rule invoking the toolchain's Objective-C++ compiler. One object file is generated for each such file. |
"rc" | *.rc | 1.1.0 | Files with this tag serve as inputs to the Windows resource compiler. One object file is generated for each such file. The tag has no effect on target platforms other than Windows. |
"staticlibrary" | n/a | 1.0.1 | The rule that creates static libraries (typically via a linker) attaches this tag to its output artifact. |
"versionscript" | - | 1.5.0 | This tag is used for ld linker scripts. You can provide such a file if you need fine-grained control over the symbols present in a shared library. This file tag only has an effect with GCC-like toolchains. The linker needs to be ld -compatible. |