clang 17.0.0git
|
Helper structure used to pass information extracted from clang executable name such as i686-linux-android-g++
.
More...
#include "clang/Driver/ToolChain.h"
Public Member Functions | |
ParsedClangName ()=default | |
ParsedClangName (std::string Suffix, const char *Mode) | |
ParsedClangName (std::string Target, std::string Suffix, const char *Mode, bool IsRegistered) | |
bool | isEmpty () const |
Public Attributes | |
std::string | TargetPrefix |
Target part of the executable name, as i686-linux-android . | |
std::string | ModeSuffix |
Driver mode part of the executable name, as g++ . | |
const char * | DriverMode = nullptr |
Corresponding driver mode argument, as '–driver-mode=g++'. | |
bool | TargetIsValid = false |
True if TargetPrefix is recognized as a registered target name. | |
Helper structure used to pass information extracted from clang executable name such as i686-linux-android-g++
.
Definition at line 64 of file ToolChain.h.
|
default |
|
inline |
Definition at line 78 of file ToolChain.h.
|
inline |
Definition at line 80 of file ToolChain.h.
|
inline |
Definition at line 85 of file ToolChain.h.
References DriverMode, ModeSuffix, and TargetPrefix.
const char* clang::driver::ParsedClangName::DriverMode = nullptr |
Corresponding driver mode argument, as '–driver-mode=g++'.
Definition at line 72 of file ToolChain.h.
Referenced by clang::driver::getDriverMode(), and isEmpty().
std::string clang::driver::ParsedClangName::ModeSuffix |
Driver mode part of the executable name, as g++
.
Definition at line 69 of file ToolChain.h.
Referenced by isEmpty().
True if TargetPrefix is recognized as a registered target name.
Definition at line 75 of file ToolChain.h.
std::string clang::driver::ParsedClangName::TargetPrefix |
Target part of the executable name, as i686-linux-android
.
Definition at line 66 of file ToolChain.h.
Referenced by isEmpty().