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 /chapter05/gcc-pass1.xml | |
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 'chapter05/gcc-pass1.xml')
-rw-r--r-- | chapter05/gcc-pass1.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 89e163b6b..613e0fe27 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -92,7 +92,6 @@ cd build</userinput></screen> --disable-nls \ --disable-shared \ --disable-multilib \ - --disable-decimal-float \ --disable-threads \ --disable-libatomic \ --disable-libgomp \ |