規則
- cc_binary
- cc_import
- cc_library
- cc_proto_library
- cc_shared_library
- cc_static_library
- cc_test
- cc_toolchain
- cc_toolchain_suite
- fdo_prefetch_hints
- fdo_profile
- memprof_profile
- propeller_optimize
cc_binary
查看規則來源cc_binary(name, deps, srcs, data, additional_linker_inputs, args, compatible_with, copts, defines, deprecation, distribs, dynamic_deps, env, exec_compatible_with, exec_properties, features, hdrs_check, includes, licenses, link_extra_lib, linkopts, linkshared, linkstatic, local_defines, malloc, module_interfaces, nocopts, output_licenses, reexport_deps, restricted_to, stamp, tags, target_compatible_with, testonly, toolchains, visibility, win_def_file)
這會產生可執行的二進位檔。
目標的
name
應與
應用程式主要進入點的來源檔案 (減去副檔名)。
舉例來說,如果進入點位於 main.cc
,則名稱應為
應為 main
。
隱含輸出目標
name.stripped
(只會在明確要求時建構):移除 最新版本的二進位檔案strip -g
已在二進位檔上執行,以移除偵錯 符號。您可以透過指令列--stripopt=-foo
。name.dwp
(僅在明確要求時建構):如果 Fission 已啟用:偵錯 適用於遠端部署二進位檔偵錯的資訊套件。其他: 空白檔案。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 可以是 |
srcs
|
標籤清單;預設為 所有 純組組合檔案 (.s、.asm) 不會預先處理,通常使用 組合器。預先處理的組合檔案 (.S) 會經過預先處理,通常建構在 C/C++ 編譯器
總共
如果
允許的
... 以及產生這些檔案的任何規則 (例如 |
data
|
標籤清單;預設為 data 」的一般留言
通常是由
大部分的建構規則。
如果 如果 C++ 程式碼可存取這些資料檔案,如下所示:
|
additional_linker_inputs
|
標籤清單;預設為 舉例來說,可以在這裡提供已編譯的 Windows .res 檔案,以便嵌入 做為二進位目標 |
copts
|
字串清單;預設值為
此屬性中的每個字串都會按照指定順序新增至
如果套件已宣告功能
|
defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
並套用仰賴規則的每項規則請務必小心,因為這可能有
影響深遠的影響如有疑問,請將定義值加進
local_defines 。
|
dynamic_deps
|
標籤清單;預設為 cc_shared_library 依附元件。
|
hdrs_check
|
String;預設值為 |
includes
|
字串清單;預設值為 -isystem path_to_package/include_entry 。
這個版本僅適用於符合下列條件的第三方程式庫
不符合 Google 撰寫 #include 陳述式的樣式。
與最佳化不同,系統會在這項規則中新增這些標記
並提供相關的所有規則(注意:而不是仰賴的規則!)成為
因為這樣可能帶來相當深遠的影響有疑慮就加上
「-我」標記為 COPTS。
新增的 |
link_extra_lib
|
標籤;預設為
根據預設,C++ 二進位檔會與 |
linkopts
|
字串清單;預設值為 LINKOPTS 之前,
來連結二進位資料
這份清單中每個開頭不是 |
linkshared
|
布林值;預設值為 linkshared=True 。預設
這個選項就會停用
出現這個旗標,表示連結是透過
如果同時指定 |
linkstatic
|
布林值;預設值為 cc_binary 和
cc_test :連結靜態的二進位檔
模式。cc_library.link_static :請參閱下方說明。
這個選項預設為
如果啟用此選項,且是二進位檔或測試項目,這個選項會指示建構工具
連結執行檔的方法有三種:
如果
在實際工作環境中,應該幾乎使用 |
local_defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
而非依附關係
|
malloc
|
標籤;預設為
根據預設,C++ 二進位檔會與 |
module_interfaces
|
標籤清單;預設為 C++ 標準對模組介面副檔名沒有限制
該標記會保護使用行為
|
nocopts
|
String;預設值為 COPTS
(包括規則的 copts 屬性中明確指定的值)
將會從「COPTS 」中移除,以便編譯這項規則。
你不需要或使用這項屬性
third_party 以外的值。系統不會預先處理這些值
除了「廠牌」替代變數。
|
reexport_deps
|
標籤清單;預設為 |
stamp
|
整數;預設值為
除非其依附元件變更,否則系統「不會」重新建構加上時間戳記的二進位檔。 |
win_def_file
|
標籤;預設為 只有在 Windows 是目標平台時,才能使用這項屬性。 可用於 匯出符號。 |
cc_import
查看規則來源cc_import(name, deps, data, hdrs, alwayslink, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, includes, interface_library, linkopts, objects, pic_objects, pic_static_library, restricted_to, shared_library, static_library, system_provided, tags, target_compatible_with, testonly, toolchains, visibility)
cc_import
規則可讓使用者匯入預先編譯的 C/C++ 程式庫。
以下為一般用途:
1.連結靜態資料庫
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
static_library = "libmylib.a",
# If alwayslink is turned on,
# libmylib.a will be forcely linked into any binary that depends on it.
# alwayslink = 1,
)
2.連結共用資料庫 (Unix)
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
shared_library = "libmylib.so",
)
3.連結共用資料庫與介面程式庫
在 Unix 上:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
# libmylib.ifso is an interface library for libmylib.so which will be passed to linker
interface_library = "libmylib.ifso",
# libmylib.so will be available for runtime
shared_library = "libmylib.so",
)
Windows:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
# mylib.lib is an import library for mylib.dll which will be passed to linker
interface_library = "mylib.lib",
# mylib.dll will be available for runtime
shared_library = "mylib.dll",
)
4.將共用資料庫連結至「system_provided=True
」
在 Unix 上:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
interface_library = "libmylib.ifso", # Or we can also use libmylib.so as its own interface library
# libmylib.so is provided by system environment, for example it can be found in LD_LIBRARY_PATH.
# This indicates that Bazel is not responsible for making libmylib.so available.
system_provided = 1,
)
Windows:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
# mylib.lib is an import library for mylib.dll which will be passed to linker
interface_library = "mylib.lib",
# mylib.dll is provided by system environment, for example it can be found in PATH.
# This indicates that Bazel is not responsible for making mylib.dll available.
system_provided = 1,
)
5. AI 必須採行
隱私保護設計原則連結至靜態或共用資料庫
在 Unix 上:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
static_library = "libmylib.a",
shared_library = "libmylib.so",
)
Windows:
cc_import(
name = "mylib",
hdrs = ["mylib.h"],
static_library = "libmylib.lib", # A normal static library
interface_library = "mylib.lib", # An import library for mylib.dll
shared_library = "mylib.dll",
)
Unix 和 Windows 上的其餘功能相同:
# first will link to libmylib.a (or libmylib.lib)
cc_binary(
name = "first",
srcs = ["first.cc"],
deps = [":mylib"],
linkstatic = 1, # default value
)
# second will link to libmylib.so (or libmylib.lib)
cc_binary(
name = "second",
srcs = ["second.cc"],
deps = [":mylib"],
linkstatic = 0,
)
cc_import
支援 include 屬性。例如:
cc_import(
name = "curl_lib",
hdrs = glob(["vendor/curl/include/curl/*.h"]),
includes = ["vendor/curl/include"],
shared_library = "vendor/curl/lib/.libs/libcurl.dylib",
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 deps 」的一般留言
通常是由
大部分的建構規則。
|
hdrs
|
標籤清單;預設為 |
alwayslink
|
布林值;預設值為 如果始終連結無法在 Windows 上與 VS 2017 搭配運作,這是因為 已知問題 請將 VS 2017 升級至最新版本。 |
includes
|
字串清單;預設值為 -isystem path_to_package/include_entry 。
這個版本僅適用於符合下列條件的第三方程式庫
不符合 Google 撰寫 #include 陳述式的樣式。
與最佳化不同,系統會在這項規則中新增這些標記
並提供相關的所有規則(注意:而不是仰賴的規則!)成為
因為這樣可能帶來相當深遠的影響有疑慮就加上
「-我」標記為 COPTS。
預設 |
interface_library
|
標籤;預設為 允許的檔案類型:
|
linkopts
|
字串清單;預設值為 LINKOPTS 之前,
來連結二進位資料
這份清單中每個開頭不是 |
objects
|
標籤清單;預設為 |
pic_objects
|
標籤清單;預設為 |
pic_static_library
|
標籤;預設為 |
shared_library
|
標籤;預設為 允許的檔案類型:
|
static_library
|
標籤;預設為 允許的檔案類型:
|
system_provided
|
布林值;預設值為 interface_library
shared_library 必須留空。
|
cc_library
查看規則來源cc_library(name, deps, srcs, data, hdrs, additional_compiler_inputs, additional_linker_inputs, alwayslink, compatible_with, copts, defines, deprecation, distribs, exec_compatible_with, exec_properties, features, hdrs_check, implementation_deps, include_prefix, includes, licenses, linkopts, linkstamp, linkstatic, local_defines, module_interfaces, restricted_to, strip_include_prefix, tags, target_compatible_with, testonly, textual_hdrs, toolchains, visibility, win_def_file)
針對 C++ 編譯的程式庫使用 cc_library()
。
結果會是 .so
、.lo
。
或 .a
(視需要而定)。
如果您是使用靜態連結建構項目
cc_library
,依附於依附程式庫規則的輸出內容
則是 .a
檔案如果指定
alwayslink=True
,即可取得 .lo
檔案。
實際的輸出檔案名稱為 libfoo.so
,
共用資料庫,其中 foo 是規則名稱。
其他種類的程式庫結尾為 .lo
和 .a
。如果需要特定的共用程式庫名稱
舉例來說,如要定義 Python 模組,請使用 genrule 來複製資料庫
拖曳到所需名稱
標頭納入檢查
凡是用於建構作業的標頭檔案,都必須在
cc_*
規則的 hdrs
或 srcs
。
這是強制執行的,
對於 cc_library
規則,hdrs
中的標頭由
程式庫的公開介面,並可直接包含
從程式庫 hdrs
和 srcs
的檔案中移除
以及 hdrs
和 srcs
中的檔案
在 deps
中列出程式庫的 cc_*
規則。
srcs
中的標頭只能直接從檔案中加入
位於程式庫本身的 hdrs
和 srcs
。時間
決定要將標頭放在 hdrs
還是 srcs
中
應思考是否要讓這個媒體庫的使用者
直接納入這項決定大致與
介於程式設計語言中的 public
和 private
瀏覽權限之間。
cc_binary
和 cc_test
規則未匯出
所以也沒有 hdrs
屬性。所有標頭
直接列在二進位檔或測試中的
srcs
。
請看以下範例來說明這些規則。
cc_binary(
name = "foo",
srcs = [
"foo.cc",
"foo.h",
],
deps = [":bar"],
)
cc_library(
name = "bar",
srcs = [
"bar.cc",
"bar-impl.h",
],
hdrs = ["bar.h"],
deps = [":baz"],
)
cc_library(
name = "baz",
srcs = [
"baz.cc",
"baz-impl.h",
],
hdrs = ["baz.h"],
)
下表列出了本範例中允許的直接納入項目。
舉例來說,foo.cc
可以直接
包含 foo.h
和 bar.h
,但不包含 baz.h
。
包含檔案 | 允許納入的項目 |
---|---|
foo.h | bar.h |
foo.cc | foo.h bar.h |
bar.h | bar-impl.h baz.h |
Bar-impl.h | bar.h baz.h |
bar.cc | bar.h bar-impl.h baz.h |
baz.h | baz-impl.h |
baz-impl.h | baz.h |
baz.cc | baz.h baz-impl.h |
納入檢查規則僅適用於 direct
包容。在上述範例中,foo.cc
可允許
包含 bar.h
,其中可能包括 baz.h
允許轉彎,允許包括baz-impl.h
。技術上
.cc
檔案的編譯方式可能間接包含任何標頭
該檔案位於 hdrs
或 srcs
中
遞移 deps
封閉的任何cc_library
。於
在此情況下,編譯器可能會讀取 baz.h
和 baz-impl.h
編譯 foo.cc
時,但 foo.cc
不得
包含 #include "baz.h"
。為了達成這個目標
已允許,必須將 baz
新增至 deps
(共 foo
個)。
Bazel 仰賴工具鍊支援來強制執行納入檢查規則。
工具鍊必須支援 layering_check
功能
並明確發出要求
--features=layering_check
指令列旗標或
features
參數的
package
函式。工具鍊
,但 Bazel 僅適用於在 Unix 和 macOS 上使用 clang。
範例
我們使用 alwayslink
旗標來強制連結連接器
但主要二進位程式碼並未參照此程式碼。
cc_library(
name = "ast_inspector_lib",
srcs = ["ast_inspector_lib.cc"],
hdrs = ["ast_inspector_lib.h"],
visibility = ["//visibility:public"],
deps = ["//third_party/llvm/llvm/tools/clang:frontend"],
# alwayslink as we want to be able to call things in this library at
# debug time, even if they aren't used anywhere in the code.
alwayslink = 1,
)
以下範例取自
third_party/python2_4_3/BUILD
。
部分程式碼使用 dl
程式庫 (載入
另一個是動態程式庫) 來說
規則會指定將 -ldl
連結選項連結至
dl
程式庫。
cc_library(
name = "python2_4_3",
linkopts = [
"-ldl",
"-lutil",
],
deps = ["//third_party/expat"],
)
以下範例來自 third_party/kde/BUILD
。
並將預先建立的 .so
檔案保留在庫中。
標頭檔案位於名為 include
的子目錄中。
cc_library(
name = "kde",
srcs = [
"lib/libDCOP.so",
"lib/libkdesu.so",
"lib/libkhtml.so",
"lib/libkparts.so",
...more .so files...,
],
includes = ["include"],
deps = ["//third_party/X11"],
)
以下範例來自 third_party/gles/BUILD
。
第三方程式碼通常需要一些 defines
和
linkopts
。
cc_library(
name = "gles",
srcs = [
"GLES/egl.h",
"GLES/gl.h",
"ddx.c",
"egl.c",
],
defines = [
"USE_FLOAT",
"__GL_FLOAT",
"__GL_COMMON",
],
linkopts = ["-ldl"], # uses dlopen(), dl library
deps = [
"es",
"//third_party/X11",
],
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 目標可以是 查看關於「 這些應為 C++ 程式庫規則的名稱。
當您建構會連結這項規則的程式庫的二進位檔時,
您也要在 「deps」名稱,並非這個程式庫的所有用戶端
資源執行時間資料依附元件隸屬於 如要連結預先編譯的第三方程式庫,請將該程式庫的名稱新增至
改為 如果只想依附項目,而不連結至這個程式庫,請新增下列項目
改為 |
srcs
|
標籤清單;預設為 所有 純組組合檔案 (.s、.asm) 不會預先處理,通常使用 組合器。預先處理的組合檔案 (.S) 會經過預先處理,通常建構在 C/C++ 編譯器
總共
如果
允許的
... 以及產生這些檔案的任何規則 (例如 |
data
|
標籤清單;預設為 data 」的一般留言
通常是由
大部分的建構規則。
如果 如果 C++ 程式碼可存取這些資料檔案,如下所示:
|
hdrs
|
標籤清單;預設為 此為強烈建議使用此處宣告的標頭檔案位置
描述程式庫的介面這些標頭就會
依據來源納入這項規則或依附規則。
不應由這個程式庫用戶端包含的標頭
列在 允許的 |
additional_compiler_inputs
|
標籤清單;預設為 |
additional_linker_inputs
|
標籤清單;預設為 舉例來說,可以在這裡提供已編譯的 Windows .res 檔案,以便嵌入 做為二進位目標 |
alwayslink
|
布林值;預設值為 srcs (即使有些不包含二進位檔參照的符號)。
如果程式碼中的程式碼未明確呼叫,這個方法就很實用
二進位檔案 (舉例來說,如果您的程式碼註冊以取得某些回呼)
這項工具可讓您存取
該基礎架構的各項服務
如果始終連結無法在 Windows 上與 VS 2017 搭配運作,這是因為 已知問題 請將 VS 2017 升級至最新版本。 |
copts
|
字串清單;預設值為
此屬性中的每個字串都會按照指定順序新增至
如果套件已宣告功能
|
defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
並套用仰賴規則的每項規則請務必小心,因為這可能有
影響深遠的影響如有疑問,請將定義值加進
local_defines 。
|
hdrs_check
|
String;預設值為 |
implementation_deps
|
標籤清單;預設為 deps ,標頭和包含這些程式庫的路徑 (及其全部路徑)
遞移依附元件) 只會用於這個程式庫的編譯作業,不適用於
依靠它使用 implementation_deps 指定的程式庫仍在連結中
取決於這個程式庫的二進位目標
目前僅限使用 cc_libraries,並受到標記的保護
|
include_prefix
|
String;預設值為 設定後,即可存取這項規則 系統會先移除 這項屬性僅適用 |
includes
|
字串清單;預設值為 -isystem path_to_package/include_entry 。
這個版本僅適用於符合下列條件的第三方程式庫
不符合 Google 撰寫 #include 陳述式的樣式。
與最佳化不同,系統會在這項規則中新增這些標記
並提供相關的所有規則(注意:而不是仰賴的規則!)成為
因為這樣可能帶來相當深遠的影響有疑慮就加上
「-我」標記為 COPTS。
新增的 |
linkopts
|
字串清單;預設值為 cc_binary.linkopts 。
linkopts 屬性也適用於
透過 deps 直接或間接依附這個程式庫
屬性 (或其他以類似方式處理的屬性):
malloc
cc_binary 的屬性)。依附元件
連結最佳化的優先度高於相依連結選擇 (例如依附元件的連結最佳化)
您之後才會出現在指令列中)。已在
--linkopt 敬上
的優先順序高於規則連結最佳化
請注意, 另外,請務必注意「-Wl,-soname」或「-Xlinker -soname」 選項不受支援,且不得在這項屬性中指定。 由 |
linkstamp
|
標籤;預設為 base 套件。
|
linkstatic
|
布林值;預設值為 cc_binary 和
cc_test :連結靜態的二進位檔
模式。cc_library.link_static :請參閱下方說明。
這個選項預設為
如果啟用此選項,且是二進位檔或測試項目,這個選項會指示建構工具
連結執行檔的方法有三種:
如果
在實際工作環境中,應該幾乎使用 |
local_defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
而非依附關係
|
module_interfaces
|
標籤清單;預設為 C++ 標準對模組介面副檔名沒有限制
該標記會保護使用行為
|
strip_include_prefix
|
String;預設值為 設定後,即可存取這項規則 如果是相對路徑,則會採用套件相關路徑。如果是絕對值 可理解為存放區相關路徑 緊接在 這項屬性僅適用 |
textual_hdrs
|
標籤清單;預設為 這是宣告無法自行編譯的標頭檔案的位置; 也就是說,這些物件必須一律 在其他來源檔案以文字形式納入 再也不是件繁重乏味的工作 |
win_def_file
|
標籤;預設為 只有在 Windows 是目標平台時,才能使用這項屬性。 可用於 匯出符號。 |
cc_proto_library
查看規則來源cc_proto_library(name, deps, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
cc_proto_library
會從 .proto
檔案產生 C++ 程式碼。
deps
必須指向 proto_library
規則。
範例:
cc_library(
name = "lib",
deps = [":foo_cc_proto"],
)
cc_proto_library(
name = "foo_cc_proto",
deps = [":foo_proto"],
)
proto_library(
name = "foo_proto",
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 proto_library 清單
並產生 C++ 程式碼
|
cc_shared_library
查看規則來源cc_shared_library(name, deps, additional_linker_inputs, compatible_with, deprecation, distribs, dynamic_deps, exec_compatible_with, exec_properties, experimental_disable_topo_sort_do_not_use_remove_before_7_0, exports_filter, features, restricted_to, roots, shared_lib_name, static_deps, tags, target_compatible_with, testonly, toolchains, user_link_flags, visibility, win_def_file)
它會產生共用程式庫,
範例
cc_shared_library( name = "foo_shared", deps = [ ":foo", ], dynamic_deps = [ ":bar_shared", ], additional_linker_inputs = [ ":foo.lds", ], user_link_flags = [ "-Wl,--version-script=$(location :foo.lds)", ], ) cc_library( name = "foo", srcs = ["foo.cc"], hdrs = ["foo.h"], deps = [ ":bar", ":baz", ], ) cc_shared_library( name = "bar_shared", shared_lib_name = "bar.so", deps = [":bar"], ) cc_library( name = "bar", srcs = ["bar.cc"], hdrs = ["bar.h"], ) cc_library( name = "baz", srcs = ["baz.cc"], hdrs = ["baz.h"], )
在範例中,foo_shared
靜態連結 foo
和 baz
,後者代表遞移依附元件。這沒有
連結 bar
,因為此網址是由
dynamic_dep
bar_shared
。
foo_shared
會使用連接器指令碼 *.lds 檔案來控制
都必須匯出。cc_shared_library
規則邏輯會執行
這項功能只會採用系統假設
如果兩個共用程式庫匯出
相同的目標。
假設每個 cc_shared_library
的直接依附元件都是
已匯出。因此,Bazel 會在分析期間假設 foo
由 foo_shared
匯出。系統並未假設會匯出 baz
製作者:foo_shared
。與exports_filter
相符的每個目標
也會預設匯出
範例中的每個 cc_library
應最多出現於
cc_shared_library
。如要將 baz
也連結至
bar_shared
,我們需要新增
tags = ["LINKABLE_MORE_THAN_ONCE"]
至 baz
。
由於 shared_lib_name
屬性,
bar_shared
的名稱會是 bar.so
改成 Linux 預設的名稱 libbar.so
。
錯誤
Two shared libraries in dependencies export the same symbols.
當您建立具有兩個不同指定目標的指定目標時
匯出相同目標的 cc_shared_library
依附元件。修正方式
就必須停止將資料庫匯出到其中一個存放區
cc_shared_library
依附元件。
Two shared libraries in dependencies link the same library statically
每當您建立含有兩個參數的新 cc_shared_library
時,
以靜態方式連結相同目標的不同 cc_shared_library
依附元件。
與匯出錯誤類似。
解決方法之一是停止將程式庫連結至其中一個
cc_shared_library
依附元件。同時,仍可連結
便需要匯出程式庫,讓未連結的應用程式能夠持續顯示
。另一個方法是提取用來匯出目標的第三個程式庫。
第三種方法是使用 LINKABLE_MORE_THAN_ONCE
標記錯誤的內容 cc_library
但這個問題應該很罕見,建議您務必確保
「cc_library
」確實可重複連結一次。
'//foo:foo' is already linked statically in '//bar:bar' but not exported`
這表示可以連線至 deps
遞移性的程式庫
無需瀏覽其中一個 cc_shared_library
依附元件
已連結至 dynamic_deps
中的另一個 cc_shared_library
,且未
已匯出。
解決方法是從 cc_shared_library
依附元件匯出或提取
第三個 cc_shared_library
匯出該資料。
Do not place libraries which only contain a precompiled dynamic library in deps.
如果您的動態程式庫是預先編譯的動態程式庫,則不需要且無法如此
以靜態方式連結至目前的 cc_shared_library
目標
建立模型因此不在 deps
的
cc_shared_library
。如果這個預先編譯的動態程式庫是
cc_libraries
,那麼 cc_library
需要依附於
Trying to export a library already exported by a different shared library
如果目前您宣稱要匯出 已由其中一個動態依附元件匯出的目標。
如要修正這個問題,請從 deps
中移除目標,請直接從動態中使用
或確保 exports_filter
不會擷取這個目標。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為
這些直接依附元件的所有遞移程式庫依附元件都會連結至這個共用項目
只要
在分析過程中,執行規則時會考量
此外,如果以靜態方式連結同一個程式庫,這項實作也會觸發錯誤
嵌入多個 |
additional_linker_inputs
|
標籤清單;預設為 user_link_flags 屬性。
|
dynamic_deps
|
標籤清單;預設為 cc_shared_library 依附元件。
|
experimental_disable_topo_sort_do_not_use_remove_before_7_0
|
布林值;預設值為 |
exports_filter
|
字串清單;預設值為
共用資料庫已可匯出所有目標「
請注意,此屬性並不會在這些目標中新增依附元件邊緣,
依附元件邊緣應由 可使用的語法如下: 將
|
roots
|
標籤清單;預設為 |
shared_lib_name
|
String;預設值為 |
static_deps
|
字串清單;預設值為 |
user_link_flags
|
字串清單;預設值為
|
win_def_file
|
標籤;預設為 只有在 Windows 是目標平台時,才能使用這項屬性。 可用於 匯出符號。 |
cc_static_library
查看規則來源cc_static_library(name, deps, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)從目標清單及其轉換依附元件清單產生靜態程式庫。
產生的靜態程式庫會包含所列出目標的
deps
及其遞移依附元件,優先順序為
PIC
物件。
輸出群組
linkdeps
文字檔案,內含所列目標的遞移依附元件標籤
deps
不會為靜態資料庫提供任何物件檔案,但確實
至少提供一個靜態、動態或介面程式庫。產生的靜態資料庫
且這些程式庫可能需要在連結時提供。
linkopts
包含使用者提供的所有遞移 linkopts
文字檔案
deps
中列出的目標依附元件。
符號重複
根據預設,cc_static_library
規則會檢查產生的靜態值
程式庫不含任何重複的符號。如有必要,建構作業就會失敗並出現錯誤
訊息,列出重複的符號和包含這些符號的物件檔案。
您可以為每個目標或每個套件停用這項檢查,方法是設定
features = ["-symbol_check"]
,或透過以下方式全域
--features=-symbol_check
。
symbol_check
的工具鍊支援
隨著 Bazel 支援自動設定的 C++ 工具鍊
symbol_check
功能。自訂工具鍊可以新增對
您將從以下兩種方法中任選一種:
- 實作
ACTION_NAMES.validate_static_library
動作。 並透過symbol_check
功能啟用該 API動作中的工具是 藉由兩個引數呼叫,這個靜態程式庫可檢查重複符號和 如果檢查通過,就必須建立的檔案路徑。 - 具有
symbol_check
功能新增封存工具旗標, 動作建立靜態資料庫,以致於無法對重複的符號執行動作。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 沒有提供任何物件檔案的依附元件 就不會包含在靜態值中
但這些標籤的標籤是在
|
cc_test
查看規則來源cc_test(name, deps, srcs, data, additional_linker_inputs, args, compatible_with, copts, defines, deprecation, distribs, dynamic_deps, env, env_inherit, exec_compatible_with, exec_properties, features, flaky, hdrs_check, includes, licenses, link_extra_lib, linkopts, linkshared, linkstatic, local, local_defines, malloc, module_interfaces, nocopts, reexport_deps, restricted_to, shard_count, size, stamp, tags, target_compatible_with, testonly, timeout, toolchains, visibility, win_def_file)
cc_test()
規則會編譯測試。這裡是測試
是某些測試程式碼周圍的二進位包裝函式。
根據預設,C++ 測試是動態連結。
若要靜態連結單元測試,請
linkstatic=True
。
我們可以說明測試需求的原因
linkstatic
;這可能並不容易
隱含輸出目標
name.stripped
(只會在明確要求時建構):移除 最新版本的二進位檔案strip -g
已在二進位檔上執行,以移除偵錯 符號。您可以透過指令列--stripopt=-foo
。name.dwp
(僅在明確要求時建構):如果 Fission 已啟用:偵錯 適用於遠端部署二進位檔偵錯的資訊套件。其他: 空白檔案。
請參閱 cc_binary() 引數,除了該引數外,
而在測試期間,stamp
引數會預設為 0
cc_test
含有額外的
(*_test) 屬性。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
deps
|
標籤清單;預設為 可以是 |
srcs
|
標籤清單;預設為 所有 純組組合檔案 (.s、.asm) 不會預先處理,通常使用 組合器。預先處理的組合檔案 (.S) 會經過預先處理,通常建構在 C/C++ 編譯器
總共
如果
允許的
... 以及產生這些檔案的任何規則 (例如 |
data
|
標籤清單;預設為 data 」的一般留言
通常是由
大部分的建構規則。
如果 如果 C++ 程式碼可存取這些資料檔案,如下所示:
|
additional_linker_inputs
|
標籤清單;預設為 舉例來說,可以在這裡提供已編譯的 Windows .res 檔案,以便嵌入 做為二進位目標 |
copts
|
字串清單;預設值為
此屬性中的每個字串都會按照指定順序新增至
如果套件已宣告功能
|
defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
並套用仰賴規則的每項規則請務必小心,因為這可能有
影響深遠的影響如有疑問,請將定義值加進
local_defines 。
|
dynamic_deps
|
標籤清單;預設為 cc_shared_library 依附元件。
|
hdrs_check
|
String;預設值為 |
includes
|
字串清單;預設值為 -isystem path_to_package/include_entry 。
這個版本僅適用於符合下列條件的第三方程式庫
不符合 Google 撰寫 #include 陳述式的樣式。
與最佳化不同,系統會在這項規則中新增這些標記
並提供相關的所有規則(注意:而不是仰賴的規則!)成為
因為這樣可能帶來相當深遠的影響有疑慮就加上
「-我」標記為 COPTS。
新增的 |
link_extra_lib
|
標籤;預設為
根據預設,C++ 二進位檔會與 |
linkopts
|
字串清單;預設值為 LINKOPTS 之前,
來連結二進位資料
這份清單中每個開頭不是 |
linkshared
|
布林值;預設值為 linkshared=True 。預設
這個選項就會停用
出現這個旗標,表示連結是透過
如果同時指定 |
linkstatic
|
布林值;預設值為 cc_binary 和
cc_test :連結靜態的二進位檔
模式。cc_library.link_static :請參閱下方說明。
這個選項預設為
如果啟用此選項,且是二進位檔或測試項目,這個選項會指示建構工具
連結執行檔的方法有三種:
如果
在實際工作環境中,應該幾乎使用 |
local_defines
|
字串清單;預設值為 -D 的前面,並新增至這個目標的編譯指令列。
而非依附關係
|
malloc
|
標籤;預設為
根據預設,C++ 二進位檔會與 |
module_interfaces
|
標籤清單;預設為 C++ 標準對模組介面副檔名沒有限制
該標記會保護使用行為
|
nocopts
|
String;預設值為 COPTS
(包括規則的 copts 屬性中明確指定的值)
將會從「COPTS 」中移除,以便編譯這項規則。
你不需要或使用這項屬性
third_party 以外的值。系統不會預先處理這些值
除了「廠牌」替代變數。
|
reexport_deps
|
標籤清單;預設為 |
stamp
|
整數;預設值為
除非其依附元件變更,否則系統「不會」重新建構加上時間戳記的二進位檔。 |
win_def_file
|
標籤;預設為 只有在 Windows 是目標平台時,才能使用這項屬性。 可用於 匯出符號。 |
cc_toolchain
查看規則來源cc_toolchain(name, all_files, ar_files, as_files, compatible_with, compiler_files, compiler_files_without_includes, coverage_files, deprecation, distribs, dwp_files, dynamic_runtime_lib, exec_compatible_with, exec_properties, exec_transition_for_inputs, features, libc_top, licenses, linker_files, module_map, objcopy_files, output_licenses, restricted_to, static_runtime_lib, strip_files, supports_header_parsing, supports_param_files, tags, target_compatible_with, testonly, toolchain_config, toolchain_identifier, toolchains, visibility)
代表 C++ 工具鍊。
此規則負責:
-
收集執行 C++ 動作所需的所有構件。做法是
例如
all_files
、compiler_files
linker_files
或其他結尾為_files
的屬性)。這些 最常見的檔案群組發現了所有必要檔案。 -
為 C++ 動作產生正確的指令列。方法是使用
CcToolchainConfigInfo
提供者 (請見下方說明)。
使用 toolchain_config
屬性設定 C++ 工具鍊。
另請參閱
第 頁
查看詳細的 C++ 工具鍊設定和工具鍊選擇說明文件。
使用 tags = ["manual"]
,以免建立及設定工具鍊
叫用 bazel build //...
時不需要使用
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
all_files
|
標籤;必選 顯示所有 cc_toolchain 構件。這些構件會新增為以下項目的輸入內容: Rules_cc 相關動作 (使用更精確的 屬性。Bazel 假設all_files 是超集
所有其他構件屬性 (例如 linktamp 編譯需要一併編譯)
並連結檔案,因此需要 all_files )。
這是 |
ar_files
|
標籤;預設為 |
as_files
|
標籤;預設為 |
compiler_files
|
標籤;必選 編譯動作所需的所有 cc_toolchain 構件。 |
compiler_files_without_includes
|
標籤;預設為 |
coverage_files
|
標籤;預設為 |
dwp_files
|
標籤;必選 內含執行 Dwp 動作所需的所有 cc_toolchain 構件。 |
dynamic_runtime_lib
|
標籤;預設為 這將用於「static_link_cpp_runtimes」功能已啟用,而我們要連結 動態依附元件 |
exec_transition_for_inputs
|
布林值;預設值為 |
libc_top
|
標籤;預設為 |
linker_files
|
標籤;必選 包含連結動作所需的所有 cc_toolchain 構件。 |
module_map
|
標籤;預設為 |
objcopy_files
|
標籤;必選 內含執行 objcopy 動作所需的所有 cc_toolchain 構件。 |
output_licenses
|
字串清單;預設值為 |
static_runtime_lib
|
標籤;預設為 這將用於「static_link_cpp_runtimes」功能已啟用,而我們要連結 靜態依附元件 |
strip_files
|
標籤;必選 包含移除操作所需的所有 cc_toolchain 構件。 |
supports_header_parsing
|
布林值;預設值為 |
supports_param_files
|
布林值;預設值為 |
toolchain_config
|
標籤;必選 提供cc_toolchain_config_info 的規則標籤。
|
toolchain_identifier
|
String;預設值為
直到問題 #5380 已修正
建議您使用這個方法將 |
cc_toolchain_suite
查看規則來源cc_toolchain_suite(name, compatible_with, deprecation, distribs, features, licenses, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
已淘汰:規則為免人工管理,並將於日後移除。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
fdo_prefetch_hints
查看規則來源fdo_prefetch_hints(name, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, profile, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
代表位於工作區的 FDO 預先擷取提示設定檔。 範例:
fdo_prefetch_hints(
name = "hints",
profile = "//path/to/hints:profile.afdo",
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
profile
|
標籤;必選 提示設定檔的標籤。提示檔案的副檔名為 .afdo 該標籤也可以指向 fdo_absolute_path_profile 規則。 |
fdo_profile
查看規則來源fdo_profile(name, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, memprof_profile, profile, proto_profile, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
代表工作區中的 FDO 設定檔。 範例:
fdo_profile(
name = "fdo",
profile = "//path/to/fdo:profile.zip",
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
memprof_profile
|
標籤;預設為 |
profile
|
標籤;必選 FDO 設定檔或產生該設定檔的規則的標籤。FDO 檔案中的 以下擴充功能:.profraw (適用於未建立索引的 LLVM 設定檔)、.profdata (已建立索引的 LLVM) 設定檔、.zip,內含 LLVM profraw 設定檔、.afdo for AutoFDO 設定檔、.xfdo XBinary 設定檔。該標籤也可以指向 fdo_absolute_path_profile 規則。 |
proto_profile
|
標籤;預設為 |
memprof_profile
查看規則來源memprof_profile(name, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, profile, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
代表工作區中的 MEMPROF 設定檔。 範例:
memprof_profile(
name = "memprof",
profile = "//path/to/memprof:profile.afdo",
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
profile
|
標籤;必選 MEMPROF 設定檔的標籤。設定檔應 .profdata 副檔名 (針對已建立索引/符號化的 Memprof) 設定檔),或是 ZIP 檔 (包含 memprof .profdata) 的.zip 副檔名 檔案。 該標籤也可以指向 fdo_absolute_path_profile 規則。 |
propeller_optimize
查看規則來源propeller_optimize(name, cc_profile, compatible_with, deprecation, distribs, exec_compatible_with, exec_properties, features, ld_profile, restricted_to, tags, target_compatible_with, testonly, toolchains, visibility)
代表工作區中的 Propeller 最佳化設定檔。 範例:
propeller_optimize(
name = "layout",
cc_profile = "//path:cc_profile.txt",
ld_profile = "//path:ld_profile.txt"
)
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
cc_profile
|
標籤;必選 傳遞至各種編譯動作的設定檔標籤。這個檔案有 .txt 副檔名。 |
ld_profile
|
標籤;必選 傳送至連結動作的設定檔標籤。這個檔案有 .txt 副檔名。 |