diff options
author | 2018-06-14 01:21:30 +0200 | |
---|---|---|
committer | 2018-06-13 19:21:30 -0400 | |
commit | fe162f615b8e5639e5255abe1522bb6a7bb81510 (patch) | |
tree | b413118fc71319bb4d620cb363e182da654890f7 | |
parent | e212a850762fb9cade06b9677d0dfbf473eb5b46 (diff) |
Enable building on riscv64 (#3655)
* First attempt at enabling building on riscv64
* PTR64=1 needs to be defined on riscv64 otherwise build fails
-rw-r--r-- | makefile | 13 | ||||
-rw-r--r-- | scripts/genie.lua | 6 |
2 files changed, 19 insertions, 0 deletions
@@ -166,6 +166,12 @@ endif ifneq ($(filter powerpc,$(UNAME_P)),) PLATFORM := powerpc endif +ifneq ($(filter riscv64%,$(UNAME_M)),) +PLATFORM := riscv64 +endif +ifneq ($(filter riscv64%,$(UNAME_P)),) +PLATFORM := riscv64 +endif ifneq ($(filter mips64%,$(UNAME_M)),) ifeq ($(shell getconf LONG_BIT),64) PLATFORM := mips64 @@ -349,6 +355,13 @@ ifndef NOASM endif endif +ifeq ($(findstring riscv64,$(UNAME)),riscv64) +ARCHITECTURE := +ifndef NOASM + NOASM := 1 +endif +endif + # Emscripten ifeq ($(findstring emcc,$(CC)),emcc) TARGETOS := asmjs diff --git a/scripts/genie.lua b/scripts/genie.lua index 7cf0396b580..ed289f73396 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1061,6 +1061,12 @@ if (_OPTIONS["PLATFORM"]=="arm64") then } end +if (_OPTIONS["PLATFORM"]=="riscv64") then + defines { + "PTR64=1", + } +end + if (_OPTIONS["PLATFORM"]=="mips64") then defines { "PTR64=1", |