We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linking CXX executable klio-export /usr/local/bin/g++-4.8 -Wall -Wno-deprecated-declarations -Wall -Wno-non-virtual-dtor -g -fomit-frame-pointer -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/klio-export.dir/klio-export.cpp.o -o klio-export ../libklio/libklio.a /usr/local/lib/libboost_test_exec_monitor-mt.a /usr/local/lib/libboost_program_options-mt.a /usr/local/lib/libboost_filesystem-mt.a /usr/local/lib/libboost_system-mt.a /usr/local/lib/libboost_date_time-mt.a /usr/lib/libsqlite3.dylib /usr/local/lib/libboost_test_exec_monitor-mt.a /usr/local/lib/libboost_program_options-mt.a /usr/local/lib/libboost_filesystem-mt.a /usr/local/lib/libboost_system-mt.a /usr/local/lib/libboost_date_time-mt.a /usr/local/lib/libjson.a -lrt /usr/lib/libcrypto.dylib ld: library not found for -lrt
On OSX 10.9, librt is not available. The offending library is statically requested in these modules:
$ grep 'lrt' modules/* FindJson.cmake: list(APPEND JSON_LIBRARY "-lrt") FindRocksDB.cmake: list(APPEND ROCKSDB_LIBRARY "-lrt")
Please replace this by a clean detection method. See #a9fcb22.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Linking CXX executable klio-export /usr/local/bin/g++-4.8 -Wall -Wno-deprecated-declarations -Wall -Wno-non-virtual-dtor -g -fomit-frame-pointer -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/klio-export.dir/klio-export.cpp.o -o klio-export ../libklio/libklio.a /usr/local/lib/libboost_test_exec_monitor-mt.a /usr/local/lib/libboost_program_options-mt.a /usr/local/lib/libboost_filesystem-mt.a /usr/local/lib/libboost_system-mt.a /usr/local/lib/libboost_date_time-mt.a /usr/lib/libsqlite3.dylib /usr/local/lib/libboost_test_exec_monitor-mt.a /usr/local/lib/libboost_program_options-mt.a /usr/local/lib/libboost_filesystem-mt.a /usr/local/lib/libboost_system-mt.a /usr/local/lib/libboost_date_time-mt.a /usr/local/lib/libjson.a -lrt /usr/lib/libcrypto.dylib ld: library not found for -lrt
On OSX 10.9, librt is not available. The offending library is statically requested in these modules:
$ grep 'lrt' modules/* FindJson.cmake: list(APPEND JSON_LIBRARY "-lrt") FindRocksDB.cmake: list(APPEND ROCKSDB_LIBRARY "-lrt")
Please replace this by a clean detection method. See #a9fcb22.
The text was updated successfully, but these errors were encountered: