Home | History | Annotate | only in /external/eigen/demos/mix_eigen_and_c
Up to higher level directory
NameDateSize
binary_library.cpp05-Oct-20174.1K
binary_library.h05-Oct-20173.3K
example.c05-Oct-20171.6K
README05-Oct-2017261

README

      1 This is an example of how one can wrap some of Eigen into a C library.
      2 
      3 To try this with GCC, do:
      4 
      5   g++ -c binary_library.cpp -O2 -msse2 -I ../..
      6   gcc example.c binary_library.o -o example -lstdc++
      7   ./example
      8 
      9 TODO: add CMakeLists, add more explanations here