- u_riscv.patch: Add support for riscv64 OBS-URL: https://build.opensuse.org/request/show/580656 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-cf-files?expand=0&rev=15
84 lines
2.9 KiB
Diff
84 lines
2.9 KiB
Diff
Author: Andreas Schwab <schwab@suse.de>
|
|
Subject: Add support for riscv64
|
|
Patch-Mainline: To be upstreamed
|
|
|
|
Index: xorg-cf-files-1.0.6/Imake.cf
|
|
===================================================================
|
|
--- xorg-cf-files-1.0.6.orig/Imake.cf
|
|
+++ xorg-cf-files-1.0.6/Imake.cf
|
|
@@ -1037,6 +1037,11 @@ XCOMM Keep cpp from replacing path eleme
|
|
# define AArch64Architecture
|
|
# undef __aarch64__
|
|
# endif
|
|
+# if defined(__riscv) && __riscv_xlen == 64
|
|
+# define RiscV64Architecture
|
|
+# undef __riscv
|
|
+# undef __riscv_xlen
|
|
+# endif
|
|
#endif /* linux || __GLIBC__ */
|
|
|
|
#if (defined(__Lynx__) || defined(Lynx)) && (defined(i386) || defined(__i386__) || defined(__x86__) || defined(__powerpc__) || defined(__sparc__) || defined(sparc))
|
|
Index: xorg-cf-files-1.0.6/linux.cf
|
|
===================================================================
|
|
--- xorg-cf-files-1.0.6.orig/linux.cf
|
|
+++ xorg-cf-files-1.0.6/linux.cf
|
|
@@ -578,7 +578,7 @@ InstallNamedTargetNoClobber(install,file
|
|
#define MkdirHierCmd mkdir -p
|
|
|
|
#ifndef HaveLib64
|
|
-# if defined (AMD64Architecture) || defined (s390xArchitecture) || defined (Ppc64Architecture) || defined (AArch64Architecture)
|
|
+# if defined (AMD64Architecture) || defined (s390xArchitecture) || defined (Ppc64Architecture) || defined (AArch64Architecture) || defined(RiscV64Architecture)
|
|
# define HaveLib64 YES
|
|
# else
|
|
# define HaveLib64 NO
|
|
@@ -994,6 +994,15 @@ InstallNamedTargetNoClobber(install,file
|
|
# define ServerExtraDefines -DGCCUSESGAS XFree86ServerDefines -D_XSERVER64
|
|
#endif /* AArch64Architecture */
|
|
|
|
+#ifdef RiscV64Architecture
|
|
+# ifndef OptimizedCDebugFlags
|
|
+# define OptimizedCDebugFlags DefaultGcc2RiscV64Opt
|
|
+# endif
|
|
+# define LinuxMachineDefines -D__riscv -D__riscv_xlen=64
|
|
+# define ServerOSDefines XFree86ServerOSDefines -DDDXTIME
|
|
+# define ServerExtraDefines -DGCCUSESGAS XFree86ServerDefines -D_XSERVER64
|
|
+#endif /* RiscV64Architecture */
|
|
+
|
|
#ifndef StandardDefines
|
|
# ifdef __linux__
|
|
# define StandardDefines -Dlinux LinuxMachineDefines LinuxSourceDefines
|
|
Index: xorg-cf-files-1.0.6/xfree86.cf
|
|
===================================================================
|
|
--- xorg-cf-files-1.0.6.orig/xfree86.cf
|
|
+++ xorg-cf-files-1.0.6/xfree86.cf
|
|
@@ -2052,6 +2052,12 @@ XFREE86JAPANESEDOCDIR = $(DOCDIR)/Japane
|
|
# endif
|
|
#endif
|
|
|
|
+#if HasGcc2 && defined(RiscV64Architecture)
|
|
+# ifndef DefaultGcc2RiscV64Opt
|
|
+# define DefaultGcc2RiscV64Opt -O2 GccAliasingArgs
|
|
+# endif
|
|
+#endif
|
|
+
|
|
#ifndef DefaultGcc2DebugOpt
|
|
# define DefaultGcc2DebugOpt -g
|
|
#endif
|
|
Index: xorg-cf-files-1.0.6/xorg.cf
|
|
===================================================================
|
|
--- xorg-cf-files-1.0.6.orig/xorg.cf
|
|
+++ xorg-cf-files-1.0.6/xorg.cf
|
|
@@ -1603,6 +1603,12 @@ XFREE86JAPANESEDOCDIR = $(DOCDIR)/Japane
|
|
# endif
|
|
#endif
|
|
|
|
+#if HasGcc2 && defined(RiscV64Architecture)
|
|
+# ifndef DefaultGcc2RiscV64Opt
|
|
+# define DefaultGcc2RiscV64Opt -O2 GccAliasingArgs
|
|
+# endif
|
|
+#endif
|
|
+
|
|
#ifndef DefaultGcc2DebugOpt
|
|
# define DefaultGcc2DebugOpt -g
|
|
#endif
|