- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for GOMIPS64 (0.04 sec)
-
doc/asm.html
<code>softfloat</code>) is made available to assembly code by predefining either <code>GOMIPS_hardfloat</code> or <code>GOMIPS_softfloat</code>. </p> <p> The value of <code>GOMIPS64</code> environment variable (<code>hardfloat</code> or <code>softfloat</code>) is made available to assembly code by predefining either <code>GOMIPS64_hardfloat</code> or <code>GOMIPS64_softfloat</code>. </p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
return []string{"-marm"} // not thumb case "s390": return []string{"-m31"} case "s390x": return []string{"-m64"} case "mips64", "mips64le": if gomips64 == "hardfloat" { return []string{"-mabi=64", "-mhard-float"} } else if gomips64 == "softfloat" { return []string{"-mabi=64", "-msoft-float"} } case "mips", "mipsle": if gomips == "hardfloat" {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0)