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
To build under Linux x86_64, I needed to add the following line to CMake:
target_link_libraries(xlisp m)
To build under Linux aarch64 (termux):
target_link_libraries(xlisp m)
set_property(TARGET xlisp PROPERTY POSITION_INDEPENDENT_CODE ON)
As I understand it, the first is the addition of the math library, and the second is about the -fPIC option for compilation.
I don't create PR because I don't know CMake well, perhaps it should be made platform dependent? @cousinitt , if I may ask, could you please take a look at this and comment.
The text was updated successfully, but these errors were encountered:
To build under Linux x86_64, I needed to add the following line to CMake:
To build under Linux aarch64 (termux):
As I understand it, the first is the addition of the math library, and the second is about the
-fPIC
option for compilation.I don't create PR because I don't know CMake well, perhaps it should be made platform dependent?
@cousinitt , if I may ask, could you please take a look at this and comment.
The text was updated successfully, but these errors were encountered: