Closed frallain closed 6 years ago
I am not well-versed into the compilation process with cmake/make and the current process gives a list of Object files (.o) i.e.
git clone https://github.com/ermig1979/Simd.git cd Simd/prj/cmake/ cmake . -DTOOLCHAIN="" -DTARGET="" -DCMAKE_BUILD_TYPE="Release" make
What should be done to link all these object files into one shared object .so file? Thanks in advance
cmake . -DTOOLCHAIN="" -DTARGET="" -DCMAKE_BUILD_TYPE="Release" -DLIBRARY="SHARED"
fixed with commit 0b24b5ca7f2205b1af1ad75972759a2b312ddd69 on 2017-12-13
I am not well-versed into the compilation process with cmake/make and the current process gives a list of Object files (.o) i.e.
What should be done to link all these object files into one shared object .so file? Thanks in advance