diff options
author | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:40:26 +0200 |
---|---|---|
committer | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:40:26 +0200 |
commit | d3937f3b373ee9b1af09176d8a7d86eb6fcf790f (patch) | |
tree | f12ad785822c855522a762d93f3212c2948da696 /SConstruct | |
parent | 3af2d8eab0e5b1ba4e936291b01895cc82fb124e (diff) | |
download | gem5-d3937f3b373ee9b1af09176d8a7d86eb6fcf790f.tar.xz |
ext: Include libfputils
This changeset includes libfputils from revision bbf0d61d75. This
library can be used to convert to and from 80-bit floats and query the
type of an 80-bit float, which is needed to support the x87 FPU.
Diffstat (limited to 'SConstruct')
-rwxr-xr-x | SConstruct | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 8e850522f..1a2c53211 100755 --- a/SConstruct +++ b/SConstruct @@ -1110,6 +1110,10 @@ main.SConscript('ext/gzstream/SConscript', main.SConscript('ext/libfdt/SConscript', variant_dir = joinpath(build_root, 'libfdt')) +# fputils build is shared across all configs in the build root. +main.SConscript('ext/fputils/SConscript', + variant_dir = joinpath(build_root, 'fputils')) + ################################################### # # This function is used to set up a directory with switching headers |