1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

[gn build] (manually) port 5087ace6519

This commit is contained in:
Nico Weber 2020-03-15 16:06:37 -04:00
parent c83cc5a2ca
commit 157bc53787

View File

@ -15,6 +15,13 @@ clang_tablegen("arm_fp16") {
output_name = "arm_fp16.h"
}
# Generate arm_sve.h
clang_tablegen("arm_sve") {
args = [ "-gen-arm-sve-header" ]
td_file = "//clang/include/clang/Basic/arm_sve.td"
output_name = "arm_sve.h"
}
# Generate arm_mve.h
clang_tablegen("arm_mve") {
args = [ "-gen-arm-mve-header" ]
@ -36,6 +43,7 @@ copy("arm_headers") {
":arm_fp16",
":arm_mve",
":arm_neon",
":arm_sve",
]
sources = get_target_outputs(":arm_neon") + get_target_outputs(":arm_fp16") +
get_target_outputs(":arm_mve") + get_target_outputs(":arm_cde")