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
use the src cmake build success on the x86 and arm64 with the same CMakeLists.txt when use at the arm64 , report the error as the follow:
the use .so or .a libraray is the same wrong.
find_package(SQLiteCpp REQUIRED)
target_link_libraries( ${PROJECT_NAME} ${OpenCV_LIBS} SQLiteCpp )
The text was updated successfully, but these errors were encountered:
I add the follow in the CMakeLists.txt solve the problem:
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address") set(CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} -fsanitize=address")
Sorry, something went wrong.
No branches or pull requests
use the src cmake build success on the x86 and arm64 with the same CMakeLists.txt
when use at the arm64 , report the error as the follow:
the use .so or .a libraray is the same wrong.
find SQLiteCpp / SQLite3
find_package(SQLiteCpp REQUIRED)
target_link_libraries(
${PROJECT_NAME}
${OpenCV_LIBS}
SQLiteCpp
)
The text was updated successfully, but these errors were encountered: