A program for calling functions in object files.
- CMake
- Make
- C compiler (such as gcc or clang)
- C standard library (such as glibc)
You can compile debug or release version by running CMake with CMAKE_BUILD_TYPE
set to either "Debug" or "Release".
cmake -DCMAKE_BUILD_TYPE=Debug .
make
cmake -DCMAKE_BUILD_TYPE=Release .
make
Currently it only takes path to a library as the first command line argument, but it will basically only work with the test library that's included in the project.
debug/objcaller ./libtest.so
release/objcaller ./libtest.so