Adding IREE_FLAG_LIST utility for repeated string flags. (#11806)
Currently only supports strings but we can extend it in the future with
some macro magic.
Many of the tools were using C++ to implement repeated flags for things
like `--function_input=` and now they can just use the common base C
APIs instead of needing extra C++ goo. Though passing giant inputs in
flags is never going to be great we now avoid the alloc+copy for each
flag that was previously required to do this.
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index e94fa4e..82f188e 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -53,7 +53,7 @@
iree::modules::hal::types
iree::tooling::context_util
iree::tooling::device_util
- iree::tooling::vm_util_cc
+ iree::tooling::vm_util
iree::vm
)
@@ -94,7 +94,7 @@
iree::testing::gtest
iree::tooling::context_util
iree::tooling::device_util
- iree::tooling::vm_util_cc
+ iree::tooling::vm_util
iree::vm
iree::vm::bytecode_module
TESTONLY
@@ -128,7 +128,7 @@
iree::tooling::comparison
iree::tooling::context_util
iree::tooling::device_util
- iree::tooling::vm_util_cc
+ iree::tooling::vm_util
iree::vm
)
@@ -254,7 +254,7 @@
iree::modules::hal::types
iree::tooling::context_util
iree::tooling::device_util
- iree::tooling::vm_util_cc
+ iree::tooling::vm_util
iree::vm
iree::vm::bytecode_module
DATA