public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.4.0-0.4
Date: Mon, 29 Jun 2026 12:23:59 GMT [thread overview]
Message-ID: <178273583954.1.11979404486337147027.rpms-gcc-81c1aa90e1fc@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 81c1aa90e1fca4aa22e6123b06b745df39aae8b5
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date : 2009-01-17T00:44:35+00:00
Stats : +31/-3 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/81c1aa90e1fca4aa22e6123b06b745df39aae8b5?branch=rhel-f41-base
Log:
4.4.0-0.4
---
diff --git a/.cvsignore b/.cvsignore
index 16f2639..4e7519f 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,2 +1,3 @@
fastjar-0.97.tar.gz
gcc-4.4.0-20090115.tar.bz2
+ppc64gnat.tar.bz2
diff --git a/gcc.spec b/gcc.spec
index fd69467..2caa5c7 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -3,11 +3,11 @@
%define gcc_version 4.4.0
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%define gcc_release 0.3
+%define gcc_release 0.4
%define _unpackaged_files_terminate_build 0
%define multilib_64_archs sparc64 ppc64 s390x x86_64
%define include_gappletviewer 1
-%ifarch %{ix86} x86_64 ia64 ppc alpha
+%ifarch %{ix86} x86_64 ia64 ppc ppc64 alpha
%define build_ada 1
%else
%define build_ada 0
@@ -50,6 +50,8 @@ Source2: README.libgcjwebplugin.so
Source3: protoize.1
%define fastjar_ver 0.97
Source4: http://download.savannah.nongnu.org/releases/fastjar/fastjar-%{fastjar_ver}.tar.gz
+# Temporary bootstrap stuff.
+Source100: ppc64gnat.tar.bz2
URL: http://gcc.gnu.org
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# Need binutils with -pie support >= 2.14.90.0.4-4
@@ -83,9 +85,11 @@ BuildRequires: glibc >= 2.3.90-35
BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so
%endif
%if %{build_ada}
+%ifnarch ppc64
# Ada requires Ada to build
BuildRequires: gcc-gnat >= 3.1, libgnat >= 3.1
%endif
+%endif
%ifarch ia64
BuildRequires: libunwind >= 0.98
%endif
@@ -478,6 +482,14 @@ rm -fr obj-%{gcc_target_platform}
mkdir obj-%{gcc_target_platform}
cd obj-%{gcc_target_platform}
+%ifarch ppc64
+mkdir gnat_hacks
+cd gnat_hacks
+tar xjf %{SOURCE100}
+export PATH=`pwd`/bin${PATH:+:$PATH}
+cd ..
+%endif
+
%if %{build_java}
%if !%{bootstrap_java}
# If we don't have gjavah in $PATH, try to build it with the old gij
@@ -599,7 +611,7 @@ CC="$CC" CFLAGS="$OPT_FLAGS" CXXFLAGS="`echo $OPT_FLAGS | sed 's/ -Wall / /g'`"
GCJFLAGS="$OPT_FLAGS" make %{?_smp_mflags} BOOT_CFLAGS="$OPT_FLAGS" profiledbootstrap
# run the tests.
-make %{?_smp_mflags} -k check ALT_CC_UNDER_TEST=gcc ALT_CXX_UNDER_TEST=g++ RUNTESTFLAGS="--target_board=unix/'{,-fstack-protector/--param=ssp-buffer-size=4}'" || :
+make %{?_smp_mflags} -k check ALT_CC_UNDER_TEST=gcc ALT_CXX_UNDER_TEST=g++ RUNTESTFLAGS="--target_board=unix/'{,-fstack-protector}'" || :
echo ====================TESTING=========================
( ../contrib/test_summary || : ) 2>&1 | sed -n '/^cat.*EOF/,/^EOF/{/^cat.*EOF/d;/^EOF/d;/^LAST_UPDATED:/d;p;}'
echo ====================TESTING END=====================
@@ -1709,5 +1721,8 @@ fi
%doc rpm.doc/changelogs/libmudflap/ChangeLog*
%changelog
+* Sat Jan 17 2009 Jakub Jelinek <jakub@redhat.com> 4.4.0-0.4
+- enable Ada support on ppc64
+
* Fri Jan 16 2009 Jakub Jelinek <jakub@redhat.com> 4.4.0-0.3
- initial 4.4 package, using newly created redhat/gcc-4_4-branch
diff --git a/gcc44-hack.patch b/gcc44-hack.patch
index 4880b12..f3ef3f1 100644
--- a/gcc44-hack.patch
+++ b/gcc44-hack.patch
@@ -111,3 +111,14 @@
then
Add_Switch (Argv, Compiler, And_Save => And_Save);
Add_Switch (Argv, Linker, And_Save => And_Save);
+--- gcc/ada/gcc-interface/Makefile.in.jj 2009-01-02 19:54:27.000000000 +0100
++++ gcc/ada/gcc-interface/Makefile.in 2009-01-16 18:56:29.848954175 +0100
+@@ -1492,7 +1492,7 @@ ifeq ($(strip $(filter-out powerpc% linu
+ LIBGNAT_TARGET_PAIRS_64 = \
+ system.ads<system-linux-ppc64.ads
+
+- ifeq ($(strip $(MULTISUBDIR)),/64)
++ ifeq ($(strip $(shell $(GCC_FOR_TARGET) $(GNATLIBCFLAGS) -print-multi-os-directory)),../lib64)
+ LIBGNAT_TARGET_PAIRS = \
+ $(LIBGNAT_TARGET_PAIRS_COMMON) $(LIBGNAT_TARGET_PAIRS_64)
+ else
diff --git a/sources b/sources
index 27264af..e99ad1c 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,3 @@
2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz
0fafcb0d23d420c978ab253702094ada gcc-4.4.0-20090115.tar.bz2
+8ebb9e69b2e356829451316d9af92eee ppc64gnat.tar.bz2
next reply other threads:[~2026-06-29 12:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 12:23 Jakub Jelinek [this message]
2026-06-29 12:24 [rpms/gcc] rhel-f41-base: 4.4.0-0.4 Jakub Jelinek
2026-06-29 12:24 Jakub Jelinek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178273583954.1.11979404486337147027.rpms-gcc-81c1aa90e1fc@fedoraproject.org \
--to=jakub@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox