Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 833559 Details for
Bug 966087
imake lacks some aarch64-specific bits
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
complete fix
0001-imake-add-AArch64-support.patch (text/plain), 4.59 KB, created by
Marcin Juszkiewicz
on 2013-12-06 10:52:35 UTC
(
hide
)
Description:
complete fix
Filename:
MIME Type:
Creator:
Marcin Juszkiewicz
Created:
2013-12-06 10:52:35 UTC
Size:
4.59 KB
patch
obsolete
>From fdb3d6f711784c999d32915e5e53f7e874eb708a Mon Sep 17 00:00:00 2001 >From: Marcin Juszkiewicz <mjuszkiewicz@redhat.com> >Date: Tue, 19 Nov 2013 12:26:34 +0100 >Subject: [PATCH] imake: add AArch64 support > >Signed-off-by: Marcin Juszkiewicz <mjuszkiewicz@redhat.com> >--- > imake-add-aarch64.patch | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ > imake-fix-aarch64.patch | 16 +++++++++++ > imake.spec | 6 ++++ > 3 files changed, 96 insertions(+) > create mode 100644 imake-add-aarch64.patch > create mode 100644 imake-fix-aarch64.patch > >diff --git a/imake-add-aarch64.patch b/imake-add-aarch64.patch >new file mode 100644 >index 0000000..6c4a078 >--- /dev/null >+++ b/imake-add-aarch64.patch >@@ -0,0 +1,74 @@ >+From 0d1be73c26f3636e024637d12c3befd8a9956cfc Mon Sep 17 00:00:00 2001 >+From: Riku Voipio <riku.voipio@linaro.org> >+Date: Mon, 22 Apr 2013 11:24:13 +0000 >+Subject: Add Aarch64 support >+ >+This patch is based on follow patch by Dirk Müller <dirk@dmllr.de> : >+ >+https://build.opensuse.org/package/view_file?expand=1&file=aarch64-support.diff&package=xorg-cf-files&project=devel%3AARM%3AAArch64%3A12.3 >+ >+Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> >+--- >+diff --git a/Imake.cf b/Imake.cf >+index d8a58e2..1ff3c8c 100644 >+--- a/Imake.cf >++++ b/Imake.cf >+@@ -1022,6 +1022,10 @@ XCOMM Keep cpp from replacing path elements containing i486/i586/i686 >+ # define AMD64Architecture >+ # endif >+ # endif >++# if defined(__aarch64__) >++# define AArch64Architecture >++# undef __aarch64__ >++# endif >+ #endif /* linux || __GLIBC__ */ >+ >+ #if (defined(__Lynx__) || defined(Lynx)) && (defined(i386) || defined(__i386__) || defined(__x86__) || defined(__powerpc__) || defined(__sparc__) || defined(sparc)) >+diff --git a/linux.cf b/linux.cf >+index af73c29..316dad3 100644 >+--- a/linux.cf >++++ b/linux.cf >+@@ -578,7 +578,7 @@ InstallNamedTargetNoClobber(install,file.ad,$(INSTAPPFLAGS),$(XAPPLOADDIR),class >+ #define MkdirHierCmd mkdir -p >+ >+ #ifndef HaveLib64 >+-# if defined (AMD64Architecture) || defined (s390xArchitecture) || defined (Ppc64Architecture) >++# if defined (AMD64Architecture) || defined (s390xArchitecture) || defined (Ppc64Architecture) || defined (AArch64Architecture) >+ # define HaveLib64 YES >+ # else >+ # define HaveLib64 NO >+@@ -976,6 +976,15 @@ InstallNamedTargetNoClobber(install,file.ad,$(INSTAPPFLAGS),$(XAPPLOADDIR),class >+ # define ServerExtraDefines -DGCCUSESGAS XFree86ServerDefines -D_XSERVER64 >+ #endif /* AMD64Architecture */ >+ >++#ifdef AArch64Architecture >++# ifndef OptimizedCDebugFlags >++# define OptimizedCDebugFlags DefaultGcc2AArch64Opt >++# endif >++# define LinuxMachineDefines -D__aarch64__ >++# define ServerOSDefines XFree86ServerOSDefines -DDDXTIME >++# define ServerExtraDefines -DGCCUSESGAS XFree86ServerDefines -D_XSERVER64 >++#endif /* AArch64Architecture */ >++ >+ #ifndef StandardDefines >+ # ifdef __linux__ >+ # define StandardDefines -Dlinux LinuxMachineDefines LinuxSourceDefines >+diff --git a/xfree86.cf b/xfree86.cf >+index f7c151c..0f538e0 100644 >+--- a/xfree86.cf >++++ b/xfree86.cf >+@@ -2022,6 +2022,12 @@ XFREE86JAPANESEDOCDIR = $(DOCDIR)/Japanese >+ # endif >+ #endif >+ >++#if HasGcc2 && defined(AArch64Architecture) >++# ifndef DefaultGcc2AArch64Opt >++# define DefaultGcc2AArch64Opt -O2 GccAliasingArgs >++# endif >++#endif >++ >+ #if HasGcc2 && defined(AlphaArchitecture) >+ # ifndef DefaultGcc2AxpOpt >+ # define DefaultGcc2AxpOpt -O2 GccAliasingArgs >+-- >+cgit v0.9.0.2-2-gbebe >diff --git a/imake-fix-aarch64.patch b/imake-fix-aarch64.patch >new file mode 100644 >index 0000000..2fd6971 >--- /dev/null >+++ b/imake-fix-aarch64.patch >@@ -0,0 +1,16 @@ >+--- a/xorg.cf >++++ b/xorg.cf >+@@ -1560,6 +1560,12 @@ >+ # define DefaultGcc2i386Opt -O2 -fno-strength-reduce GccAliasingArgs >+ # endif >+ #endif >++ >++#if HasGcc2 && defined(AArch64Architecture) >++# ifndef DefaultGcc2AArch64Opt >++# define DefaultGcc2AArch64Opt -O2 GccAliasingArgs >++# endif >++#endif >+ >+ #if HasGcc2 && defined(AMD64Architecture) >+ # ifndef DefaultGcc2AMD64Opt >+ >diff --git a/imake.spec b/imake.spec >index a1ea66c..69a3415 100644 >--- a/imake.spec >+++ b/imake.spec >@@ -13,6 +13,8 @@ Source3: ftp://ftp.x.org/pub/individual/util/xorg-cf-files-1.0.4.tar.bz2 > Source4: ftp://ftp.x.org/pub/individual/util/lndir-1.0.3.tar.bz2 > Patch2: xorg-cf-files-1.0.2-redhat.patch > Patch11: imake-1.0.2-abort.patch >+Patch20: imake-add-aarch64.patch >+Patch21: imake-fix-aarch64.patch > > BuildRequires: pkgconfig > BuildRequires: xorg-x11-util-macros >@@ -38,6 +40,10 @@ migrate software to the GNU autotools system. > pushd %{name}-%{version} > %patch11 -p1 -b .abort > popd >+pushd xorg-cf-files-1.0.4 >+%patch20 -p1 >+%patch21 -p1 >+popd > > %build > # Build everything >-- >1.8.4.2 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 966087
:
751714
|
833559
|
837693