-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
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
Missing libraries when building #102
Comments
I have exactly this error! So, how to fix it? |
There is apparently a pull request (#94) which compiles. However, I did not test it. I want to wait for the official fix, if there is one coming. |
Please add the missing prjf library to Git! |
It doesn't seem to actually need that file, so you can just delete the reference to mkdir pCloudCC/lib/prjf
touch pCloudCC/lib/prjf/pRJF.c or diff --git a/pCloudCC/CMakeLists.txt b/pCloudCC/CMakeLists.txt
index c50c8bc..bffedd9 100644
--- a/pCloudCC/CMakeLists.txt
+++ b/pCloudCC/CMakeLists.txt
@@ -56,7 +56,7 @@ include_directories(${OVERLAY_CLENT_PATH})
add_library(sqlite3 STATIC ${SQLITE3_PATH}/sqlite3.c)
target_link_libraries(sqlite3 z dl)
-add_library(pcloudcc_lib SHARED pclsync_lib_c.cpp pclsync_lib.cpp control_tools.cpp ${OVERLAY_CLENT_PATH}/overlay_client.c ${OVERLAY_CLENT_PATH}/debug.c ${PRJF_PATH}/pRJF.c)
+add_library(pcloudcc_lib SHARED pclsync_lib_c.cpp pclsync_lib.cpp control_tools.cpp ${OVERLAY_CLENT_PATH}/overlay_client.c ${OVERLAY_CLENT_PATH}/debug.c)
target_link_libraries(pcloudcc_lib ${PCLSYNC_PATH}/psynclib.a ${MBEDTLS_PATH}/library/libmbedtls.a fuse pthread sqlite3 udev)
file(GLOB_RECURSE INC_ALL "*.h" "*.hpp") |
I think in commit dced645 a lib
prjf
was introduced but it is missing from this repository (see CMakeLists.txt ). Did you forget to include it in the repository or is the error on my end?For reference, the error I get:
Thanks!
The text was updated successfully, but these errors were encountered: