有這套規則 就能用特定硬體平台建立模型 建構並指定可能需要為這些平台編譯程式碼所需的特定工具。 使用者應熟悉這裡說明的概念。
規則
constraint_setting
查看規則來源constraint_setting(name, default_constraint_value, deprecation, distribs, features, licenses, tags, testonly, visibility)
這項規則是用來導入新的限制類型,這類限制類型可以由平台指定值。
舉例來說,您可以定義名為「glibc_version」的 constraint_setting
代表
讓平台安裝不同版本的 glibc 程式庫。
詳情請參閱
平台頁面。
每個 constraint_setting
都有一組可供擴充的
constraint_value
秒。通常在同一個套件中定義,但有時也會
不同的套件會為現有設定引進新的值。舉例來說
設定 @platforms//cpu:cpu
時,您可以使用自訂值加以擴充,
針對模糊的 CPU 架構定義平台。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
default_constraint_value
|
這項設定的預設值;如未指定值,會使用這個標籤。如果這是
屬性時,constraint_value 就必須在
與這個 constraint_setting 相同的套件
如果限制設定有預設值,則只要平台不包含
任何限制值,會與平台指定
預設值。否則,如果沒有預設值,會考量該限制設定
沒有指定的版本在這種情況下,平台不會與任何
需要特定值的限制清單 (例如 |
constraint_value
查看規則來源constraint_value(name, constraint_setting, deprecation, distribs, features, licenses, tags, testonly, visibility)
範例
下列指令會為預先定義的 constraint_value
建立新的可能值
CPU 架構
constraint_value( name = "mips", constraint_setting = "@platforms//cpu:cpu", )
mips
架構做為
x86_64
、arm
等。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
constraint_setting
|
此 constraint_value 為 constraint_setting
|
平台
查看規則來源platform(name, constraint_values, deprecation, distribs, exec_properties, features, licenses, parents, remote_execution_properties, tags, testonly, visibility)
這項規則會定義新的平台,也就是一組已命名的限制選項 (例如 CPU 架構或編譯器版本) 介紹 哪些部分可以執行 詳情請參閱「平台」頁面。
範例
這定義了一個平台,用來說明在 ARM 中執行 Linux 的任何環境。
platform( name = "linux_arm", constraint_values = [ "@platforms//os:linux", "@platforms//cpu:arm", ], )
平台繼承
平台可以使用 parents
屬性指定要使用的其他平台
限制值的來源雖然 parents
屬性採用清單,但不包含
目前支援多個值,指定多個父項會是錯誤。
在平台中檢查限制設定的值時,請先直接設定這些值
系統會檢查 (透過 constraint_values
屬性),然後檢查限制值
父系物件父項平台鏈會以遞迴方式不斷向上擴充。如此一來
直接在平台上設定的值會覆寫父項上設定的值。
平台會繼承父項平台的 exec_properties
屬性。
父項和子平台 exec_properties
中的字典項目
合併計算
如果相同的鍵同時出現在父項和子項的 exec_properties
中,
系統會使用子項的值如果子平台將空字串指定為值,
就會取消設定
平台也可沿用 (已淘汰) 的 remote_execution_properties
屬性
來自上層平台注意:新程式碼應改用 exec_properties
。
下方所述的邏輯是為了與舊版行為相容,但將會移除
設定 remote_execution_platform
的邏輯如下:
就是上層平台:
-
如未在子平台上設定
remote_execution_property
,父項的 系統將使用remote_execution_properties
。 -
如果子平台已設定
remote_execution_property
,且含有 常值字串 {PARENT_REMOTE_EXECUTION_PROPERTIES},該巨集將 替換成父項remote_execution_property
屬性的內容。 -
如果
remote_execution_property
已在子平台上設定,且不包含 巨集,子項的remote_execution_property
將會保持不變。
由於 remote_execution_properties
已淘汰且將逐步停用,
remote_execution_properties
和exec_properties
位於相同的地點
不得使用繼承鏈結。
偏好使用 exec_properties
取代已淘汰
remote_execution_properties
。
範例:限制值
platform( name = "parent", constraint_values = [ "@platforms//os:linux", "@platforms//cpu:arm", ], ) platform( name = "child_a", parents = [":parent"], constraint_values = [ "@platforms//cpu:x86_64", ], ) platform( name = "child_b", parents = [":parent"], )
在這個範例中,子平台具備下列屬性:
-
child_a
限制值@platforms//os:linux
(沿用) 以及@platforms//cpu:x86_64
(直接在平台設定)。 -
child_b
從父項繼承所有限制值,且未設定任何 基礎架構
範例:執行屬性
platform( name = "parent", exec_properties = { "k1": "v1", "k2": "v2", }, ) platform( name = "child_a", parents = [":parent"], ) platform( name = "child_b", parents = [":parent"], exec_properties = { "k1": "child" } ) platform( name = "child_c", parents = [":parent"], exec_properties = { "k1": "" } ) platform( name = "child_d", parents = [":parent"], exec_properties = { "k3": "v3" } )
在這個範例中,子平台具備下列屬性:
-
child_a
繼承了「exec_properties」且不會設定自己的物件。 -
child_b
繼承父項的exec_properties
並覆寫父項的k1
的值。其exec_properties
會是:{ "k1": "child", "k2": "v2" }
。 -
child_c
繼承父項的exec_properties
且未設定k1
。其exec_properties
會是:{ "k2": "v2" }
。 -
child_d
會繼承父項的exec_properties
,並新增 資源。其exec_properties
會是:{ "k1": "v1", "k2": "v2", "k3": "v3" }
。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
constraint_values
|
這個平台包含的限制選項組合。為了建立平台
要套用至指定的環境,環境至少要有這份清單中的值。
這份清單中的每個 |
exec_properties
|
字典:字串 ->String;不可設定;預設為 exec_properties 屬性的任何資料。
如果子項平台和父項平台定義了相同鍵,系統會保留子項的值。不限
與空字串相關聯的鍵會從字典中移除。
這項屬性會取代已淘汰的
remote_execution_properties 。
|
parents
|
這個平台應繼承的 platform 目標標籤。雖然
屬性接受清單,不可出現多個平台。不限
如果未直接在這個平台上設定 constraint_settings,可在父項平台中找到。
詳情請參閱平台沿用設定一節。
|
remote_execution_properties
|
String;不可設定;預設為 |
工具鍊
查看規則來源toolchain(name, deprecation, distribs, exec_compatible_with, features, licenses, tags, target_compatible_with, target_settings, testonly, toolchain, toolchain_type, visibility)
這項規則會宣告特定工具鍊的類型和限制,以便選取該工具鍊 工具鍊解析期間詳情請參閱 工具鍊網頁 詳細資料。
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |
exec_compatible_with
|
執行平台必須滿足的 constraint_value 清單
才能在該平台上為目標建築選取這個工具鍊。
|
target_compatible_with
|
目標平台必須滿足的 constraint_value 清單
這樣這個工具鍊才能為該平台的目標建構項目選取。
|
target_settings
|
標籤清單;預設為 config_setting 清單
才能在工具鍊解析期間選取此工具鍊。
|
toolchain
|
名稱;必選 代表此目標所提供的實際工具或工具套件 已選取工具鍊。 |
toolchain_type
|
toolchain_type 目標的標籤,代表此角色的角色
工具鍊提供。
|
toolchain_type
查看規則來源toolchain_type(name, compatible_with, deprecation, features, restricted_to, tags, target_compatible_with, testonly, visibility)
此規則定義了新型工具鍊,代表一種工具類別, 擔任相同角色
詳情請參閱工具鍊頁面。
範例
這會定義自訂規則的工具鍊類型,
toolchain_type( name = "bar_toolchain_type", )
這可用於 bzl 檔案。
bar_binary = rule( implementation = _bar_binary_impl, attrs = { "srcs": attr.label_list(allow_files = True), ... # No `_compiler` attribute anymore. }, toolchains = ["//bar_tools:toolchain_type"] )
引數
屬性 | |
---|---|
name |
名稱;必選 此目標的專屬名稱。 |