Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | | do not try to use Eigen's blas/lapack if they cannot be compiled | Gael Guennebaud | 2011-02-23 | |
| | | ||||
* | | add EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS non-default option. Use it in ↵ | Benoit Jacob | 2011-02-22 | |
| | | | | | | | | our own CMakeLists. also add a include-guard-like mechanism to prevent doing unmatched #pragma warning push/pop. | |||
| * | Improved site and buildname generation. | Hauke Heibel | 2011-02-20 | |
|/ | ||||
* | make check no test everything - also rm the EigenTesting cmake sub-project | Gael Guennebaud | 2011-02-17 | |
| | ||||
* | Replace unset() by set() with no value specified; this does the same. | Jitse Niesen | 2011-02-16 | |
| | | | | unset() was introduced in CMake 2.6.3 but we require only 2.6.2. | |||
* | CTEST_CUSTOM_* parameter have to be put in a CTestCustum.cmake file which ↵ | Gael Guennebaud | 2011-02-15 | |
| | | | | itself has to be in the build directory | |||
* | now ctest does compile the test even though they are not in the "all" target | Gael Guennebaud | 2011-02-15 | |
| | ||||
* | Exposed failtetst publicly. | Hauke Heibel | 2011-02-06 | |
| | ||||
* | failtest: a new cmake-based test suite for testing stuff that should fail to ↵ | Benoit Jacob | 2011-02-05 | |
| | | | | build. This first batch imports some const correctness checks from bug #54. | |||
* | add a minimalistict lapack wrapper | Gael Guennebaud | 2011-01-26 | |
| | ||||
* | restore the behavior of defaulting to Release build type | Benoit Jacob | 2011-01-19 | |
| | ||||
* | Replace CMAKE_SOURCE_DIR with PROJECT_SOURCE_DIR to allow the cmake project ↵ | hamelin.philippe | 2011-01-17 | |
| | | | | to be included by a root project. | |||
* | make the table fit within 80 characters | Gael Guennebaud | 2011-01-01 | |
| | ||||
* | Switched "MESSAGE(" -> "MESSAGE(STATUS " in CMake script, since otherwise ↵ | Jose Luis Blanco | 2010-12-29 | |
| | | | | they may look like errors to the user. | |||
* | Re-enabled the BLAS compilation on non-MSVC systems. | Hauke Heibel | 2010-12-17 | |
| | ||||
* | Switched back to the old behaviour where EIGEN_SPLIT_LARGE_TESTS was ON per ↵ | Hauke Heibel | 2010-12-17 | |
| | | | | | | default on MSVC systems. Without splitting these tests, some do not compile | |||
* | disable blas if C++ compiler is MSVC | Gael Guennebaud | 2010-12-16 | |
| | ||||
* | enforce compilation of blas unit tests when running ctest | Gael Guennebaud | 2010-12-12 | |
| | ||||
* | Fixed NEON compilation errors, changed float-abi back to softfp (which is ↵ | Konstantinos Margaritis | 2010-12-10 | |
| | | | | | | the most used right now). Some complex tests appear to segfault, needs a more careful look. | |||
* | Allow unset ${CMAKE_BUILD_TYPE} which is required for some targets and ↵ | Hauke Heibel | 2010-10-25 | |
| | | | | corresponding to using default values. | |||
* | error out on bad build type | Benoit Jacob | 2010-10-25 | |
| | ||||
* | remove build type tweaking | Benoit Jacob | 2010-10-23 | |
| | ||||
* | Use 'Release' as default when build type is not specified. | Jitse Niesen | 2010-10-22 | |
| | | | | | Otherwise, "cmake /path/to/eigen/" in an empty build directory, as specified on the CMake page on the wiki, yields a fatal error. | |||
* | don't change the build type, fatal error if bad build type | Benoit Jacob | 2010-10-21 | |
| | ||||
* | Fixed the unit test splitting for MSVC. | Hauke Heibel | 2010-10-21 | |
| | ||||
* | Fixed bug #74. | Hauke Heibel | 2010-10-17 | |
| | ||||
* | add EIGEN_TEST_X87 option | Benoit Jacob | 2010-10-13 | |
| | ||||
* | Added NEON/Complex.h, ~3.5x faster than scalar std::complex<float> | Konstantinos Margaritis | 2010-07-10 | |
| | | | | minor fix in AltiVec Complex.h | |||
* | Enable OpenMP testing for MSVC. | Hauke Heibel | 2010-07-01 | |
| | | | | Added CMake comments. | |||
* | add a Transposition section in page 2 | Gael Guennebaud | 2010-06-28 | |
| | ||||
* | Disabled to __forceinline warning - it creates too many spurious errors and ↵ | Hauke Heibel | 2010-05-19 | |
| | | | | we disabled it only for the unit test (see also the code comment). | |||
* | make the cmake options EIGEN_DEFAULT_TO_ROW_MAJOR and disabling ↵ | Benoit Jacob | 2010-05-18 | |
| | | | | EIGEN_SPLIT_LARGE_TESTS work also for unsupported tests | |||
* | add platform check for how to link to the standard math library. | Benoit Jacob | 2010-04-19 | |
| | | | | This allows to support QNX. | |||
* | clarify help message about make install | Benoit Jacob | 2010-04-17 | |
| | ||||
* | make sure that changing CMAKE_INSTALL_PREFIX is properly taken into account | Gael Guennebaud | 2010-04-08 | |
| | ||||
* | introduce EIGEN_DONT_ALIGN_STACK (disables alignment attributes) and ↵ | Benoit Jacob | 2010-03-06 | |
| | | | | | | EIGEN_DONT_ALIGN_HEAP (disables aligned malloc)... you can still use EIGEN_DONT_ALIGN to do both at once. | |||
* | add an option to test ompenmp | Gael Guennebaud | 2010-03-05 | |
| | ||||
* | minor cleanup | Benoit Jacob | 2010-03-03 | |
| | ||||
* | Added initial NEON support, most tests pass however we had to use some ↵ | Konstantinos Margaritis | 2010-03-03 | |
| | | | | | | | | hackish workarounds as gcc on ARM (both CodeSourcery 4.4.1 used and experimental 4.5) fail to ensure proper alignment with __attribute__((aligned(16))). This has to be fixed upstream to remove the workarounds. | |||
* | Tried to get rid of MSVC warning D9025. | Hauke Heibel | 2010-02-21 | |
| | ||||
* | CMake cleanup. | Hauke Heibel | 2010-02-20 | |
| | ||||
* | not all versions of gcc support -Wno-variadic-macros | Gael Guennebaud | 2010-02-15 | |
| | ||||
* | Now variadic macro related warnings should be supressed as well under Linux. | Hauke Heibel | 2010-02-09 | |
| | ||||
* | remove reference to dead option | Benoit Jacob | 2010-01-28 | |
| | ||||
* | Added to possibility to compile unit tests at maximum warning level. | Hauke Heibel | 2009-12-12 | |
| | | | | Silenced (amongst others) many conversion related warnings. | |||
* | instruction to remove CMakeCache.txt for out-of-source build | Mark Borgerding | 2009-12-01 | |
| | ||||
* | improve the scripts for building unit tests: | Benoit Jacob | 2009-11-25 | |
| | | | | | * support unsupported/ * use egrep instead of grep, properly escape special chars. | |||
* | add SSE4 support, start with integer multiplication | Benoit Jacob | 2009-11-24 | |
| | ||||
* | move signature file to root directory, where it belongs | Benoit Jacob | 2009-11-19 | |
| | ||||
* | * eigen2->eigen3 | Benoit Jacob | 2009-11-19 | |
| | | | | | * bump version to 2.91.0 * add FindEigen3.cmake |