Merge pull request #54319 from aaronfranke/3.x-riscv-server

[3.x] Add RISC-V to "server" platform
This commit is contained in:
Aaron Franke 2021-10-27 15:48:58 -04:00 committed by GitHub
commit 8723df767b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,6 +80,13 @@ def configure(env):
if env["bits"] == "default":
env["bits"] = "64" if is64 else "32"
if env["arch"] == "" and platform.machine() == "riscv64":
env["arch"] = "rv64"
if env["arch"] == "rv64":
# G = General-purpose extensions, C = Compression extension (very common).
env.Append(CCFLAGS=["-march=rv64gc"])
## Compiler configuration
if "CXX" in env and "clang" in os.path.basename(env["CXX"]):