You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using cmake, the third-party library has interdependence and an error occurs.
Looking forward to your reply.
Errors:
/usr/bin/ld: /home/xxx/lib/libobjMesh.a(objMesh.o): warning: relocation against `_ZTIi@@CXXABI_1.3' in read-only section `.text.unlikely'/usr/bin/ld: /home/xxx/lib/libconfigFile.a(configFile.o): relocation R_X86_64_PC32 against symbol `_ZTV10ConfigFile' can not be used when making a shared object; recompile with -fPIC
Complete cmakelists:
cmake_minimum_required(VERSION 3.4...3.18)
project(corn_deformable)
SET(CMAKE_CXX_STANDARD 11)
SET(SOURCES src/main.cpp src/CornDeform.cpp)
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
add_subdirectory(pybind11)
INCLUDE_DIRECTORIES(
${PROJECT_SOURCE_DIR}/include
${PROJECT_SOURCE_DIR}/VEGA_FEM_4_0/include
)
LINK_DIRECTORIES(
${PROJECT_SOURCE_DIR}/VEGA_FEM_4_0/lib
)
pybind11_add_module(${PROJECT_NAME} ${SOURCES})
TARGET_LINK_LIBRARIES(${PROJECT_NAME} PUBLIC
-Wl,--start-group
-lGL -lGLU -lglut -lGLEW
libbasicAlgorithms.a
libcamera.a
libclothBW.a
libconfigFile.a
libconstrainedDOFs.a
libcorotationalLinearFEM.a
libforceModel.a
libgetopts.a
libgraph.a
libimageIO.a
libintegrator.a
libintegratorSparse.a
libinterpolationCoordinates.a
libisotropicHyperelasticFEM.a
liblighting.a
liblistIO.a
libmassSpringSystem.a
libmatrixIO.a
libmesh.a
libminivector.a
libobjMesh.a
libopenGLHelper.a
libperformanceCounter.a
libpolarDecomposition.a
libsceneObject.a
libsparseMatrix.a
libsparseSolver.a
libstencilForceModel.a
libstvk.a
libvolumetricMesh.a
-Wl,--end-group
)
# EXAMPLE_VERSION_INFO is defined by setup.py and passed into the C++ code as a# define (VERSION_INFO) here.
target_compile_definitions(${PROJECT_NAME}
PRIVATE VERSION_INFO=${EXAMPLE_VERSION_INFO})
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When using cmake, the third-party library has interdependence and an error occurs.
Looking forward to your reply.
Errors:
Complete cmakelists:
Beta Was this translation helpful? Give feedback.
All reactions