mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
5c22c7a7de
UTF-8, LF, no BOM, and newlines at the end of files
10 lines
262 B
Plaintext
10 lines
262 B
Plaintext
This is an example of how one can wrap some of Eigen into a C library.
|
|
|
|
To try this with GCC, do:
|
|
|
|
g++ -c binary_library.cpp -O2 -msse2 -I ../..
|
|
gcc example.c binary_library.o -o example -lstdc++
|
|
./example
|
|
|
|
TODO: add CMakeLists, add more explanations here
|