Orc's CMake declarations do not correctly attempt to link in abseil, so we add the relevant library they need. Without these, we get errors like: ``` <store path>/bin/ld: <store path>/lib/libabsl_raw_hash-set.so.2601.0.0: error adding symbols: DSO missing from command line ```
13 lines
317 B
Diff
13 lines
317 B
Diff
diff --git a/tools/src/CMakeLists.txt b/tools/src/CMakeLists.txt
|
|
index 81e2da6f19..cdb809aed9 100644
|
|
--- a/tools/src/CMakeLists.txt
|
|
+++ b/tools/src/CMakeLists.txt
|
|
@@ -64,6 +64,7 @@
|
|
target_link_libraries (orc-metadata
|
|
orc-tools-common
|
|
orc::protobuf
|
|
+ absl::raw_hash_set
|
|
)
|
|
|
|
add_executable (orc-statistics
|