diff options
author | Xi Ruoyao <xry111@xry111.site> | 2022-11-22 16:13:30 +0800 |
---|---|---|
committer | Xi Ruoyao <xry111@xry111.site> | 2022-11-22 18:22:53 +0800 |
commit | f01f8a56da958581636000229edb1e233d281986 (patch) | |
tree | f6c5f7cdf913458c352b70bbee312ae7aadbe91a /chapter06 | |
parent | 54948b710c6976f5de159da89b8431497e5b7e2f (diff) |
gcc: remove --disable-decimal-float from pass 1 and 2
We need to enable decimal float here or MPFR will be built w/o decimal
float support. Then 2 of 183 tests will be skipped, and this will also
cause an ICA issue.
Q: Why we need decimal float in pass 1?
A: We need pass-1 GCC with decimal float support to build decimal float
routines in pass-2 libgcc.
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/gcc-pass2.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chapter06/gcc-pass2.xml b/chapter06/gcc-pass2.xml index 24e14a346..ebc20a296 100644 --- a/chapter06/gcc-pass2.xml +++ b/chapter06/gcc-pass2.xml @@ -93,7 +93,6 @@ cd build</userinput></screen> --enable-default-ssp \ --disable-nls \ --disable-multilib \ - --disable-decimal-float \ --disable-libatomic \ --disable-libgomp \ --disable-libquadmath \ |