Hi, I forced to use soft-float with
diff --git a/compiler-rt/lib/builtins/floatundidf.c b/compiler-rt/lib/builtins/floatundidf.c
index e7c6aae5ce3..89392f60cfe 100644
--- a/compiler-rt/lib/builtins/floatundidf.c
+++ b/compiler-rt/lib/builtins/floatundidf.c
@@ -20,7 +20,8 @@
#include "int_lib.h"
-#ifndef __SOFT_FP__
+//#ifndef __SOFT_FP__
+#if 0
// Support for systems that have hardware floating-point; we'll set the inexact
// flag as a side-effect of this computation.
I recompiled the rust toolchain with removing build directory and then doing ./x.py install
However, my change was not updated.
How can I rebuild and install the complier-rt?