enable -fno-math-errno as we never check errno (#9281)

- disables setting of the errno variable as required by C89/C99 on calling math library routines
This commit is contained in:
Daniel Agar 2018-04-11 22:17:39 -04:00 committed by GitHub
parent 28f9b38919
commit bdf4f19867
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -361,7 +361,10 @@ function(px4_add_common_flags)
set(_optimization_flags
-fno-strict-aliasing
-fomit-frame-pointer
-fno-math-errno
-funsafe-math-optimizations
-ffunction-sections
-fdata-sections
)