Github user navsan commented on a diff in the pull request:
https://github.com/apache/incubator-quickstep/pull/13#discussion_r66369946
--- Diff: cli/CMakeLists.txt ---
@@ -30,6 +30,12 @@ if(LIBNUMA_FOUND)
set(QUICKSTEP_HAVE_LIBNUMA TRUE)
endif()
+if (BUILD_SHARED_LIBS)
+ set(GFLAGS_LIB_NAME gflags_nothreads-shared)
+else()
+ set(GFLAGS_LIB_NAME gflags_nothreads-static)
+endif()
--- End diff --
You'd think so, but it's not! There's no common target gflags_nothreads
that you can link against. It's only a problem with this particular third_party
library. I think it's only fixed in the latest version of gflags
(https://github.com/gflags/gflags/issues/117).
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---