Skip to content

Commit

Permalink
Merge pull request mono/mono#12271 from directhex/fix-configure-on-ol…
Browse files Browse the repository at this point in the history
…d-autoconf

Add explicit no-op to RISC-V FPU detection, to fix old Autoconf (RHEL 6)

Commit migrated from mono/mono@0623e93
  • Loading branch information
directhex authored Jan 4, 2019
2 parents 8d78392 + 1d3b253 commit d3332a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mono/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5058,6 +5058,7 @@ if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
#error "double"
#endif
], [
fpabi=auto
], [
fpabi=double
])
Expand All @@ -5069,6 +5070,7 @@ if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
#error "single"
#endif
], [
fpabi=auto
], [
fpabi=single
])
Expand All @@ -5080,6 +5082,7 @@ if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
#error "soft"
#endif
], [
fpabi=auto
], [
fpabi=soft
])
Expand Down

0 comments on commit d3332a7

Please sign in to comment.