diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-11 17:01:12 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-11 17:21:59 +0200 |
commit | e294c501a76e9388afe4e19d5985484dc50ca905 (patch) | |
tree | c421fb94d446bae9a9d1ac9da23e1141a22d3d32 | |
parent | aa0c3c98f43e5a455f01bd9a7a472d62a3096865 (diff) | |
download | justbuild-e294c501a76e9388afe4e19d5985484dc50ca905.tar.gz |
external: Fix missing abseil export targets
-rw-r--r-- | etc/import/absl/flags/TARGETS.absl | 20 | ||||
-rw-r--r-- | etc/import/absl/numeric/TARGETS.absl | 20 | ||||
-rw-r--r-- | etc/import/absl/random/TARGETS.absl | 21 |
3 files changed, 61 insertions, 0 deletions
diff --git a/etc/import/absl/flags/TARGETS.absl b/etc/import/absl/flags/TARGETS.absl index d3f9d2c3..0ebca782 100644 --- a/etc/import/absl/flags/TARGETS.absl +++ b/etc/import/absl/flags/TARGETS.absl @@ -35,6 +35,26 @@ ] } , "marshalling": + { "type": "export" + , "target": "marshalling_internal" + , "flexible_config": + [ "ADD_CFLAGS" + , "ADD_CXXFLAGS" + , "AR" + , "ARCH" + , "CC" + , "CFLAGS" + , "COMPILER_FAMILY" + , "CXX" + , "CXXFLAGS" + , "DEBUG" + , "ENV" + , "HOST_ARCH" + , "OS" + , "TARGET_ARCH" + ] + } +, "marshalling_internal": { "type": ["@", "rules", "CC", "library"] , "name": ["marshalling"] , "stage": ["absl", "flags"] diff --git a/etc/import/absl/numeric/TARGETS.absl b/etc/import/absl/numeric/TARGETS.absl index f38f1101..4ebf47a6 100644 --- a/etc/import/absl/numeric/TARGETS.absl +++ b/etc/import/absl/numeric/TARGETS.absl @@ -1,4 +1,24 @@ { "int128": + { "type": "export" + , "target": "int128_internal" + , "flexible_config": + [ "ADD_CFLAGS" + , "ADD_CXXFLAGS" + , "AR" + , "ARCH" + , "CC" + , "CFLAGS" + , "COMPILER_FAMILY" + , "CXX" + , "CXXFLAGS" + , "DEBUG" + , "ENV" + , "HOST_ARCH" + , "OS" + , "TARGET_ARCH" + ] + } +, "int128_internal": { "type": ["@", "rules", "CC", "library"] , "name": ["int128"] , "stage": ["absl", "numeric"] diff --git a/etc/import/absl/random/TARGETS.absl b/etc/import/absl/random/TARGETS.absl index bd5b778b..2407f1f6 100644 --- a/etc/import/absl/random/TARGETS.absl +++ b/etc/import/absl/random/TARGETS.absl @@ -34,6 +34,27 @@ ] } , "distributions": + { "type": "export" + , "target": "distributions_internal" + , "flexible_config": + [ "ADD_CFLAGS" + , "ADD_CXXFLAGS" + , "AR" + , "ARCH" + , "CC" + , "CFLAGS" + , "COMPILER_FAMILY" + , "CXX" + , "CXXFLAGS" + , "DEBUG" + , "ENV" + , "HOST_ARCH" + , "OS" + , "TARGET_ARCH" + , "USE_SYSTEM_LIBS" + ] + } +, "distributions_internal": { "type": ["@", "rules", "CC", "library"] , "name": ["distributions"] , "stage": ["absl", "random"] |