clang 20.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 65 of file ToolChain.h.
|
default |
|
inline |
Definition at line 79 of file ToolChain.h.
|
inline |
Definition at line 81 of file ToolChain.h.
|
inline |
Definition at line 86 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 73 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 70 of file ToolChain.h.
Referenced by isEmpty().
True if TargetPrefix is recognized as a registered target name.
Definition at line 76 of file ToolChain.h.
std::string clang::driver::ParsedClangName::TargetPrefix |
Target part of the executable name, as i686-linux-android
.
Definition at line 67 of file ToolChain.h.
Referenced by isEmpty().