We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This might be useful to others. When integrating this library with https://github.com/nholthaus/units with the following setup
Due to the units library requiring you to undefine certain symbols, that then causes the Eigen/Core complex.h include to fail.
I fixed this by redefining those symbols right above #include <complex.h> within Eigen/Core to satisfy its build needs.
#include <complex.h>
#define _U 01 #define _L 02 #define _N 04 #define _S 010 #define _P 020 #define _C 040 #define _X 0100 #define _B 0200
Is what I had to define.
These values were pulled from toolchain-gccarmnoneeabi/arm-none-eabi/include/ctypes.h
I don't know if this will cause some other funky issues. But I am yet to find out.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This might be useful to others.
When integrating this library with https://github.com/nholthaus/units with the following setup
Due to the units library requiring you to undefine certain symbols, that then causes the Eigen/Core complex.h include to fail.
I fixed this by redefining those symbols right above
#include <complex.h>
within Eigen/Core to satisfy its build needs.Is what I had to define.
These values were pulled from toolchain-gccarmnoneeabi/arm-none-eabi/include/ctypes.h
I don't know if this will cause some other funky issues. But I am yet to find out.
The text was updated successfully, but these errors were encountered: