diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-26 23:10:03 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-26 23:10:03 +0100 |
commit | 91d3331d467c05d673f965b9f6eb8d33715df2b7 (patch) | |
tree | e0877565a718aa6b6a7c8cd909188ba76095c34c /src | |
parent | 37f5c2d4654580aa9d1195490d4a911b9b079acb (diff) | |
download | dabmod-91d3331d467c05d673f965b9f6eb8d33715df2b7.tar.gz dabmod-91d3331d467c05d673f965b9f6eb8d33715df2b7.tar.bz2 dabmod-91d3331d467c05d673f965b9f6eb8d33715df2b7.zip |
Print fast-math in the feature list on startup
Diffstat (limited to 'src')
-rw-r--r-- | src/DabMod.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DabMod.cpp b/src/DabMod.cpp index e44ed20..2dea12e 100644 --- a/src/DabMod.cpp +++ b/src/DabMod.cpp @@ -310,6 +310,9 @@ int launch_modulator(int argc, char* argv[]) #if defined(HAVE_OUTPUT_UHD) "output_uhd " << #endif +#if defined(__FAST_MATH__) + "fast-math" << +#endif "\n"; if (use_configuration_file && use_configuration_cmdline) { |