forked from Archive/PX4-Autopilot
commit
4466b5680a
|
@ -156,7 +156,7 @@ ARCHOPTIMIZATION = $(MAXOPTIMIZATION) \
|
|||
# Language-specific flags
|
||||
#
|
||||
ARCHCFLAGS = -std=gnu99 -g
|
||||
ARCHCXXFLAGS = -fno-exceptions -fno-rtti -std=c++0x -fno-threadsafe-statics -D__CUSTOM_FILE_IO__ -g
|
||||
ARCHCXXFLAGS = -fno-exceptions -fno-rtti -std=c++11 -fno-threadsafe-statics -D__CUSTOM_FILE_IO__ -g
|
||||
|
||||
# Generic warnings
|
||||
#
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
#pragma GCC diagnostic ignored "-Wfloat-equal"
|
||||
#define _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC 1
|
||||
|
||||
#define EIGEN_MAX_STATIC_ALIGN_BYTES 16
|
||||
|
||||
#include <eigen/Eigen/Core>
|
||||
#include <eigen/Eigen/Geometry>
|
||||
#pragma GCC diagnostic pop
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
* @author Johan Jansen <jnsn.johan@gmail.com>
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
#include <px4_eigen.h>
|
||||
#include <float.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in New Issue