diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-10-16 05:49:58 -0400 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-10-16 05:49:58 -0400 |
commit | e6ad39adac7e77e36a294f63da47ad79ca446e93 (patch) | |
tree | f3d182a99cb9febbce10d634673a2bda18dae8a7 /ext/fputils/SConscript | |
parent | 2d2006ddb3df926d79d0d744af81e8260f5c466c (diff) | |
download | gem5-e6ad39adac7e77e36a294f63da47ad79ca446e93.tar.xz |
ext: Update fputils to rev 6a47fd8358
This patch updates fputils to the latest revision (6a47fd8358) from
the upstream repository (github.com/andysan/fputils). Most notably,
this includes changes that export a limited set of 64-bit float
manipulation and avoids a warning about unused 64-bit floats in clang.
Diffstat (limited to 'ext/fputils/SConscript')
-rw-r--r-- | ext/fputils/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/fputils/SConscript b/ext/fputils/SConscript index 9c5685264..6d3f1ff8d 100644 --- a/ext/fputils/SConscript +++ b/ext/fputils/SConscript @@ -40,6 +40,7 @@ if fpenv['GCC']: fpenv.Append(CCFLAGS=['-std=c99']) fpenv.Library('fputils', [ + fpenv.SharedObject('fp64.c'), fpenv.SharedObject('fp80.c'), ]) |