CcToolchainInfo

問題を報告する ソースを表示 ナイトリー · 7.4 . 7.3 · 7.2 · 7.1 · 7.0 · 6.5

使用されている C++ コンパイラに関する情報。

メンバー

all_files

depset CcToolchainInfo.all_files

すべてのツールチェーン ファイルを返します(このツールチェーンを入力として使用してアクションに渡すことができるようにするため)。

ar_executable

string CcToolchainInfo.ar_executable

ar バイナリのパス。

built_in_include_directories

list CcToolchainInfo.built_in_include_directories

コンパイラの組み込みディレクトリのリストを返します。

compiler

string CcToolchainInfo.compiler

C++ コンパイラ。None が返されることがあります。

compiler_executable

string CcToolchainInfo.compiler_executable

コンパイラ バイナリのパス。

CPU

string CcToolchainInfo.cpu

C++ ツールチェーンのターゲット CPU。None を返す場合があります。

dynamic_runtime_lib

depset CcToolchainInfo.dynamic_runtime_lib(feature_configuration)

「dynamic_runtime_lib」属性からファイルを返します(この toolchain を入力として使用してアクションに渡すことができます)。呼び出し元は、feature_configuration で「static_link_cpp_runtimes」機能が有効になっているかどうかを確認できます(有効になっていない場合は、「static_runtime_lib」も「dynamic_runtime_lib」も使用する必要はありません)。また、静的リンク モードが有効になっている場合は「static_runtime_lib」を使用できます。

パラメータ

パラメータ 説明
feature_configuration 必須
クエリ対象の特徴構成。

gcov_executable

string CcToolchainInfo.gcov_executable

gcov バイナリのパス。

ld_executable

string CcToolchainInfo.ld_executable

ld バイナリのパス。

libc

string CcToolchainInfo.libc

libc バージョン文字列。None を返す場合があります。

needs_pic_for_dynamic_libraries

bool CcToolchainInfo.needs_pic_for_dynamic_libraries(feature_configuration)

このルールのコンパイルに -fPIC を適用する必要がある場合は true、そうでない場合は false を返します。C++ ツールチェーンと `--force_pic` Bazel オプションの有無に応じて、このルールの C++ コンパイルに -fPIC を適用するかどうかを決定します。

パラメータ

パラメータ 説明
feature_configuration required
クエリ対象の機能構成。

nm_executable

string CcToolchainInfo.nm_executable

nm バイナリのパス。

objcopy_executable

string CcToolchainInfo.objcopy_executable

objcopy バイナリのパス。

objdump_executable

string CcToolchainInfo.objdump_executable

objdump バイナリのパス。

preprocessor_executable

string CcToolchainInfo.preprocessor_executable

プリプロセッサ バイナリのパス。

static_runtime_lib

depset CcToolchainInfo.static_runtime_lib(feature_configuration)

「static_runtime_lib」属性からファイルを返します(このツールチェーンを入力として使用してアクションに渡すことができます)。呼び出し元は、feature_configuration で「static_link_cpp_runtimes」機能が有効になっているかどうかを確認する必要があります(有効になっていない場合は、「static_runtime_lib」も「dynamic_runtime_lib」も使用しないでください)。また、動的リンク モードが有効になっている場合は「dynamic_runtime_lib」を使用する必要があります。

パラメータ

パラメータ 説明
feature_configuration 必須
クエリ対象の特徴構成。

strip_executable

string CcToolchainInfo.strip_executable

strip バイナリのパス。

sysroot

string CcToolchainInfo.sysroot

使用する sysroot を返します。ツールチェーン コンパイラが異なる sysroot をサポートしていない場合、または sysroot がデフォルトの sysroot と同じである場合、このメソッドは None を返します。 None を返す場合があります。

target_gnu_system_name

string CcToolchainInfo.target_gnu_system_name

GNU システム名。None が返されることがあります。

to_json

string CcToolchainInfo.to_json()

非推奨。この API は非推奨であり、まもなく削除されます。これに依存しないでください。---incompatible_struct_has_no_methods により無効になります。このフラグを使用すると、コードがまもなく削除される機能と互換性があることを確認できます。
構造体パラメータから JSON 文字列を作成します。このメソッドは、すべての構造体要素が(再帰的に)文字列、整数、ブール値、その他の構造体、これらの型のリスト、または文字列キーとこれらの型の値を持つ辞書の場合にのみ機能します。文字列内の引用符と改行はエスケープされます。例:
struct(key=123).to_json()
# {"key":123}

struct(key=True).to_json()
# {"key":true}

struct(key=[1, 2, 3]).to_json()
# {"key":[1,2,3]}

struct(key='text').to_json()
# {"key":"text"}

struct(key=struct(inner_key='text')).to_json()
# {"key":{"inner_key":"text"}}

struct(key=[struct(inner_key=1), struct(inner_key=2)]).to_json()
# {"key":[{"inner_key":1},{"inner_key":2}]}

struct(key=struct(inner_key=struct(inner_inner_key='text'))).to_json()
# {"key":{"inner_key":{"inner_inner_key":"text"}}}

非推奨: 代わりに、json.encode(x) または json.encode_indent(x) を使用してください。これらは構造体以外の値にも機能し、構造体フィールドの名前空間を汚染しません。

to_proto

string CcToolchainInfo.to_proto()

非推奨。この API は非推奨であり、まもなく削除されます。これに依存しないでください。---incompatible_struct_has_no_methods では無効になっています。このフラグを使用すると、コードがまもなく削除される機能と互換性があることを確認できます。
構造体パラメータからテキスト メッセージを作成します。このメソッドは、すべての構造体要素が(再帰的に)文字列、整数、ブール値、他の構造体、またはこれらの型の辞書またはリストである場合にのみ機能します。文字列内の引用符と改行はエスケープされます。構造体のキーは並べ替えられた順序で反復処理されます。例:
struct(key=123).to_proto()
# key: 123

struct(key=True).to_proto()
# key: true

struct(key=[1, 2, 3]).to_proto()
# key: 1
# key: 2
# key: 3

struct(key='text').to_proto()
# key: "text"

struct(key=struct(inner_key='text')).to_proto()
# key {
#   inner_key: "text"
# }

struct(key=[struct(inner_key=1), struct(inner_key=2)]).to_proto()
# key {
#   inner_key: 1
# }
# key {
#   inner_key: 2
# }

struct(key=struct(inner_key=struct(inner_inner_key='text'))).to_proto()
# key {
#    inner_key {
#     inner_inner_key: "text"
#   }
# }

struct(foo={4: 3, 2: 1}).to_proto()
# foo: {
#   key: 4
#   value: 3
# }
# foo: {
#   key: 2
#   value: 1
# }

非推奨: 代わりに proto.encode_text(x) を使用してください。