From 8520c39ae1a62c328be6b8391c4df022c6bee229 Mon Sep 17 00:00:00 2001 From: David Abdurachmanov Date: Tue, 27 Mar 2018 18:49:43 +0200 Subject: [PATCH] Add riscv64 to SDL_config.h Signed-off-by: David Abdurachmanov --- SDL_config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SDL_config.h b/SDL_config.h index 7fa21b5..84eb112 100644 --- a/SDL_config.h +++ b/SDL_config.h @@ -71,6 +71,8 @@ #include "SDL_config-mipsel.h" #elif defined(__mips) #include "SDL_config-mips.h" +#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64 +#include "SDL_config-riscv64.h" #else #error "The SDL-devel package is not usable with the architecture." #endif -- 2.14.3