forked from Imagelibrary/rtems
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5728225e77 |
135
Makefile.maint
135
Makefile.maint
@@ -1,135 +0,0 @@
|
|||||||
#
|
|
||||||
# Maintainer Makefile
|
|
||||||
#
|
|
||||||
|
|
||||||
# WARNING:
|
|
||||||
|
|
||||||
# THIS IS EXPERIMENTAL - DO NOT USE (YET) !
|
|
||||||
|
|
||||||
# * This Makefile is only useful to RTEMS maintainers
|
|
||||||
# * You must have write access to RTEMS CVS
|
|
||||||
# * Running this Makefile modifies RTEMS CVS
|
|
||||||
# * Watch out for warning and error messages - Do NOT IGNORE them!
|
|
||||||
|
|
||||||
|
|
||||||
# MAINTAINER notes:
|
|
||||||
|
|
||||||
|
|
||||||
# Cutting a new release:
|
|
||||||
# 1. Perform a non-anonymous cvs checkout of the BRANCH
|
|
||||||
# you want to cut a release tarball from
|
|
||||||
# 2. Run "make -f Makefile.maint new-revision"
|
|
||||||
# (rsp. "make -f Makefile.maint new-minor").
|
|
||||||
# 3. Run "make -f Makefile.maint commit"
|
|
||||||
# 4. Run "make -f Makefile.maint tag"
|
|
||||||
# 5. Run "make -f Makefile.maint tarball"
|
|
||||||
|
|
||||||
# -----------------
|
|
||||||
# SECURITY: Append a string to tag to avoid accidentially screwing up cvs-tags
|
|
||||||
# For "hot runs" you will want to use "make -f Makefile.maint TAG_SUFFIX= <command>"
|
|
||||||
TAG_SUFFIX = -test1
|
|
||||||
|
|
||||||
rtems_version := $(shell cat VERSION | sed -n '/.* Version /{s/^.*Version[ ]*\([0-9\.]\+\)/\1/p};')
|
|
||||||
rtems_tag := $(shell echo "rtems-$(rtems_version)" | tr . -)
|
|
||||||
rtems_api := 4.7
|
|
||||||
PATH := /opt/rtems-$(rtems_api)/bin:$(PATH)
|
|
||||||
|
|
||||||
# -----------------
|
|
||||||
# Cleanup check out and cvs-tag the files inside
|
|
||||||
tag:
|
|
||||||
cvs -z9 up -dP >/dev/null
|
|
||||||
./bootstrap -p >/dev/null
|
|
||||||
cvs tag -c $(rtems_tag)$(TAG_SUFFIX) >/dev/null
|
|
||||||
|
|
||||||
# -----------------
|
|
||||||
# Different stages of cvs-exporting
|
|
||||||
rtems-$(rtems_version)/stamp.export.$(rtems_tag)$(TAG_SUFFIX):
|
|
||||||
rm -rf rtems-$(rtems_version)
|
|
||||||
@cvs -z9 export -d rtems-$(rtems_version) -r $(rtems_tag)$(TAG_SUFFIX) rtems >/dev/null
|
|
||||||
@if ! test -f rtems-$(rtems_version)/VERSION; then \
|
|
||||||
echo "ERROR export failed"; \
|
|
||||||
echo " Did you run 'make -f Makefile.maint tag' ?"; exit1; fi
|
|
||||||
echo "$(rtems_tag)$(TAG_SUFFIX)" > rtems-$(rtems_version)/stamp.export.$(rtems_tag)$(TAG_SUFFIX)
|
|
||||||
|
|
||||||
rtems-$(rtems_version)$(TAG_SUFFIX).tar.bz2: rtems-$(rtems_version)/stamp.autofiles \
|
|
||||||
rtems-$(rtems_version)/excludes \
|
|
||||||
rtems-$(rtems_version)/TOOL_VERSIONS
|
|
||||||
tar -cj -X rtems-$(rtems_version)/excludes \
|
|
||||||
-f rtems-$(rtems_version)$(TAG_SUFFIX).tar.bz2 rtems-$(rtems_version)
|
|
||||||
|
|
||||||
rtems-$(rtems_version)/stamp.cleanup: rtems-$(rtems_version)/stamp.export.$(rtems_tag)$(TAG_SUFFIX)
|
|
||||||
find rtems-$(rtems_version) -name .cvsignore -exec rm -f {} \;
|
|
||||||
find rtems-$(rtems_version) -name preinstall.am -exec touch {} \;
|
|
||||||
touch rtems-$(rtems_version)/c/src/librdbg/src/*/*/remdeb*.[hc]
|
|
||||||
rm -rf rtems-$(rtems_version)/contrib
|
|
||||||
touch rtems-$(rtems_version)/stamp.cleanup
|
|
||||||
|
|
||||||
rtems-$(rtems_version)/stamp.autofiles: rtems-$(rtems_version)/stamp.cleanup
|
|
||||||
cd rtems-$(rtems_version) && ./bootstrap -r
|
|
||||||
touch rtems-$(rtems_version)/stamp.autofiles
|
|
||||||
|
|
||||||
rtems-$(rtems_version)/excludes: Makefile.maint
|
|
||||||
@echo "Generating $@"
|
|
||||||
@echo "excludes" > $@
|
|
||||||
@echo "stamp.*" >> $@
|
|
||||||
@echo "autom4te.cache" >> $@
|
|
||||||
@echo "Makefile.maint" >> $@
|
|
||||||
|
|
||||||
tarball: rtems-$(rtems_version)$(TAG_SUFFIX).tar.bz2
|
|
||||||
|
|
||||||
rtems-$(rtems_version)/TOOL_VERSIONS: Makefile.maint
|
|
||||||
( \
|
|
||||||
date ; \
|
|
||||||
echo ; \
|
|
||||||
echo "This file contains configuration information on the " ; \
|
|
||||||
echo "primary computer used to test and make the $(rtems_version)" ; \
|
|
||||||
echo "version of RTEMS" ; \
|
|
||||||
echo ; \
|
|
||||||
echo "OS Version: " `head -1 /etc/issue` ; \
|
|
||||||
echo ; \
|
|
||||||
echo "The following RTEMS RPMs were installed on the machine" ; \
|
|
||||||
echo "where this release was made:" ; \
|
|
||||||
echo ; \
|
|
||||||
rpm -qa 'rtems-$(rtems_api)-*' | sort | sed -e 's/^/ /' ; \
|
|
||||||
echo \
|
|
||||||
) > $@
|
|
||||||
|
|
||||||
# -----------------
|
|
||||||
# Create a new minor release
|
|
||||||
# increments the 2nd digit of the version number
|
|
||||||
# set the 3rd digit of the version number to 0
|
|
||||||
# Example: 4.6.99.4 -> 4.7.0
|
|
||||||
new-minor:
|
|
||||||
@v=$$(echo $(rtems_version) | sed 's,^\([0-9]\+\).*,\1,'); \
|
|
||||||
r=$$(echo $(rtems_version) | sed 's,^[0-9]\+\.\([0-9]\+\).*,\1,'); \
|
|
||||||
r=$$(($$r + 1)); version="$$v.$$r.0"; \
|
|
||||||
echo "New minor release: $$version"; \
|
|
||||||
sed -i -e "s|\[_RTEMS_VERSION\],\[.*\]|\[_RTEMS_VERSION\],\[$$version\]|" \
|
|
||||||
$(VERSION_FILES); \
|
|
||||||
sed -i -e "s,\(^RTEMS Version\).*,\1 $$version," VERSION
|
|
||||||
|
|
||||||
# Create a new revision release
|
|
||||||
# increments the last digit of the version number
|
|
||||||
# Examples: 4.6.99.4 -> 4.6.99.5
|
|
||||||
# 4.7.0 -> 4.7.1
|
|
||||||
new-revision:
|
|
||||||
@m=$$(echo $(rtems_version) | sed 's,^\(.*\)\.[0-9]\+,\1,'); \
|
|
||||||
n=$$(echo $(rtems_version) | sed 's,^.*\.\([0-9]\+\),\1,'); \
|
|
||||||
n=$$(($$n + 1)); version="$$m.$$n";\
|
|
||||||
echo "New revision release: $$version"; \
|
|
||||||
sed -i -e "s|\[_RTEMS_VERSION\],\[.*\]|\[_RTEMS_VERSION\],\[$$version\]|" \
|
|
||||||
$(VERSION_FILES); \
|
|
||||||
sed -i -e "s,\(^RTEMS Version\).*,\1 $$version," VERSION
|
|
||||||
|
|
||||||
VERSION_FILES += aclocal/version.m4
|
|
||||||
VERSION_FILES += cpukit/aclocal/version.m4
|
|
||||||
VERSION_FILES += c/src/aclocal/version.m4
|
|
||||||
VERSION_FILES += testsuites/aclocal/version.m4
|
|
||||||
|
|
||||||
CVS_RUN := $(shell if [ -n "$(TAG_SUFFIX)" ]; then echo "cvs -n"; else echo "cvs"; fi)
|
|
||||||
|
|
||||||
commit:
|
|
||||||
$(CVS_RUN) commit -m "Upgrade to $(rtems_version)" \
|
|
||||||
$(VERSION_FILES) VERSION
|
|
||||||
|
|
||||||
.PHONY: commit new-minor new-revision tag tarball
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
aclocal.m4
|
|
||||||
autom4te*
|
|
||||||
config.log
|
|
||||||
config.status
|
|
||||||
configure
|
|
||||||
install-sh
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
missing
|
|
||||||
*.spec
|
|
||||||
*.tar.bz2
|
|
||||||
@@ -1,340 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 2, June 1991
|
|
||||||
|
|
||||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
|
||||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
|
||||||
License is intended to guarantee your freedom to share and change free
|
|
||||||
software--to make sure the software is free for all its users. This
|
|
||||||
General Public License applies to most of the Free Software
|
|
||||||
Foundation's software and to any other program whose authors commit to
|
|
||||||
using it. (Some other Free Software Foundation software is covered by
|
|
||||||
the GNU Library General Public License instead.) You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
this service if you wish), that you receive source code or can get it
|
|
||||||
if you want it, that you can change the software or use pieces of it
|
|
||||||
in new free programs; and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to make restrictions that forbid
|
|
||||||
anyone to deny you these rights or to ask you to surrender the rights.
|
|
||||||
These restrictions translate to certain responsibilities for you if you
|
|
||||||
distribute copies of the software, or if you modify it.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must give the recipients all the rights that
|
|
||||||
you have. You must make sure that they, too, receive or can get the
|
|
||||||
source code. And you must show them these terms so they know their
|
|
||||||
rights.
|
|
||||||
|
|
||||||
We protect your rights with two steps: (1) copyright the software, and
|
|
||||||
(2) offer you this license which gives you legal permission to copy,
|
|
||||||
distribute and/or modify the software.
|
|
||||||
|
|
||||||
Also, for each author's protection and ours, we want to make certain
|
|
||||||
that everyone understands that there is no warranty for this free
|
|
||||||
software. If the software is modified by someone else and passed on, we
|
|
||||||
want its recipients to know that what they have is not the original, so
|
|
||||||
that any problems introduced by others will not reflect on the original
|
|
||||||
authors' reputations.
|
|
||||||
|
|
||||||
Finally, any free program is threatened constantly by software
|
|
||||||
patents. We wish to avoid the danger that redistributors of a free
|
|
||||||
program will individually obtain patent licenses, in effect making the
|
|
||||||
program proprietary. To prevent this, we have made it clear that any
|
|
||||||
patent must be licensed for everyone's free use or not licensed at all.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. This License applies to any program or other work which contains
|
|
||||||
a notice placed by the copyright holder saying it may be distributed
|
|
||||||
under the terms of this General Public License. The "Program", below,
|
|
||||||
refers to any such program or work, and a "work based on the Program"
|
|
||||||
means either the Program or any derivative work under copyright law:
|
|
||||||
that is to say, a work containing the Program or a portion of it,
|
|
||||||
either verbatim or with modifications and/or translated into another
|
|
||||||
language. (Hereinafter, translation is included without limitation in
|
|
||||||
the term "modification".) Each licensee is addressed as "you".
|
|
||||||
|
|
||||||
Activities other than copying, distribution and modification are not
|
|
||||||
covered by this License; they are outside its scope. The act of
|
|
||||||
running the Program is not restricted, and the output from the Program
|
|
||||||
is covered only if its contents constitute a work based on the
|
|
||||||
Program (independent of having been made by running the Program).
|
|
||||||
Whether that is true depends on what the Program does.
|
|
||||||
|
|
||||||
1. You may copy and distribute verbatim copies of the Program's
|
|
||||||
source code as you receive it, in any medium, provided that you
|
|
||||||
conspicuously and appropriately publish on each copy an appropriate
|
|
||||||
copyright notice and disclaimer of warranty; keep intact all the
|
|
||||||
notices that refer to this License and to the absence of any warranty;
|
|
||||||
and give any other recipients of the Program a copy of this License
|
|
||||||
along with the Program.
|
|
||||||
|
|
||||||
You may charge a fee for the physical act of transferring a copy, and
|
|
||||||
you may at your option offer warranty protection in exchange for a fee.
|
|
||||||
|
|
||||||
2. You may modify your copy or copies of the Program or any portion
|
|
||||||
of it, thus forming a work based on the Program, and copy and
|
|
||||||
distribute such modifications or work under the terms of Section 1
|
|
||||||
above, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) You must cause the modified files to carry prominent notices
|
|
||||||
stating that you changed the files and the date of any change.
|
|
||||||
|
|
||||||
b) You must cause any work that you distribute or publish, that in
|
|
||||||
whole or in part contains or is derived from the Program or any
|
|
||||||
part thereof, to be licensed as a whole at no charge to all third
|
|
||||||
parties under the terms of this License.
|
|
||||||
|
|
||||||
c) If the modified program normally reads commands interactively
|
|
||||||
when run, you must cause it, when started running for such
|
|
||||||
interactive use in the most ordinary way, to print or display an
|
|
||||||
announcement including an appropriate copyright notice and a
|
|
||||||
notice that there is no warranty (or else, saying that you provide
|
|
||||||
a warranty) and that users may redistribute the program under
|
|
||||||
these conditions, and telling the user how to view a copy of this
|
|
||||||
License. (Exception: if the Program itself is interactive but
|
|
||||||
does not normally print such an announcement, your work based on
|
|
||||||
the Program is not required to print an announcement.)
|
|
||||||
|
|
||||||
These requirements apply to the modified work as a whole. If
|
|
||||||
identifiable sections of that work are not derived from the Program,
|
|
||||||
and can be reasonably considered independent and separate works in
|
|
||||||
themselves, then this License, and its terms, do not apply to those
|
|
||||||
sections when you distribute them as separate works. But when you
|
|
||||||
distribute the same sections as part of a whole which is a work based
|
|
||||||
on the Program, the distribution of the whole must be on the terms of
|
|
||||||
this License, whose permissions for other licensees extend to the
|
|
||||||
entire whole, and thus to each and every part regardless of who wrote it.
|
|
||||||
|
|
||||||
Thus, it is not the intent of this section to claim rights or contest
|
|
||||||
your rights to work written entirely by you; rather, the intent is to
|
|
||||||
exercise the right to control the distribution of derivative or
|
|
||||||
collective works based on the Program.
|
|
||||||
|
|
||||||
In addition, mere aggregation of another work not based on the Program
|
|
||||||
with the Program (or with a work based on the Program) on a volume of
|
|
||||||
a storage or distribution medium does not bring the other work under
|
|
||||||
the scope of this License.
|
|
||||||
|
|
||||||
3. You may copy and distribute the Program (or a work based on it,
|
|
||||||
under Section 2) in object code or executable form under the terms of
|
|
||||||
Sections 1 and 2 above provided that you also do one of the following:
|
|
||||||
|
|
||||||
a) Accompany it with the complete corresponding machine-readable
|
|
||||||
source code, which must be distributed under the terms of Sections
|
|
||||||
1 and 2 above on a medium customarily used for software interchange; or,
|
|
||||||
|
|
||||||
b) Accompany it with a written offer, valid for at least three
|
|
||||||
years, to give any third party, for a charge no more than your
|
|
||||||
cost of physically performing source distribution, a complete
|
|
||||||
machine-readable copy of the corresponding source code, to be
|
|
||||||
distributed under the terms of Sections 1 and 2 above on a medium
|
|
||||||
customarily used for software interchange; or,
|
|
||||||
|
|
||||||
c) Accompany it with the information you received as to the offer
|
|
||||||
to distribute corresponding source code. (This alternative is
|
|
||||||
allowed only for noncommercial distribution and only if you
|
|
||||||
received the program in object code or executable form with such
|
|
||||||
an offer, in accord with Subsection b above.)
|
|
||||||
|
|
||||||
The source code for a work means the preferred form of the work for
|
|
||||||
making modifications to it. For an executable work, complete source
|
|
||||||
code means all the source code for all modules it contains, plus any
|
|
||||||
associated interface definition files, plus the scripts used to
|
|
||||||
control compilation and installation of the executable. However, as a
|
|
||||||
special exception, the source code distributed need not include
|
|
||||||
anything that is normally distributed (in either source or binary
|
|
||||||
form) with the major components (compiler, kernel, and so on) of the
|
|
||||||
operating system on which the executable runs, unless that component
|
|
||||||
itself accompanies the executable.
|
|
||||||
|
|
||||||
If distribution of executable or object code is made by offering
|
|
||||||
access to copy from a designated place, then offering equivalent
|
|
||||||
access to copy the source code from the same place counts as
|
|
||||||
distribution of the source code, even though third parties are not
|
|
||||||
compelled to copy the source along with the object code.
|
|
||||||
|
|
||||||
4. You may not copy, modify, sublicense, or distribute the Program
|
|
||||||
except as expressly provided under this License. Any attempt
|
|
||||||
otherwise to copy, modify, sublicense or distribute the Program is
|
|
||||||
void, and will automatically terminate your rights under this License.
|
|
||||||
However, parties who have received copies, or rights, from you under
|
|
||||||
this License will not have their licenses terminated so long as such
|
|
||||||
parties remain in full compliance.
|
|
||||||
|
|
||||||
5. You are not required to accept this License, since you have not
|
|
||||||
signed it. However, nothing else grants you permission to modify or
|
|
||||||
distribute the Program or its derivative works. These actions are
|
|
||||||
prohibited by law if you do not accept this License. Therefore, by
|
|
||||||
modifying or distributing the Program (or any work based on the
|
|
||||||
Program), you indicate your acceptance of this License to do so, and
|
|
||||||
all its terms and conditions for copying, distributing or modifying
|
|
||||||
the Program or works based on it.
|
|
||||||
|
|
||||||
6. Each time you redistribute the Program (or any work based on the
|
|
||||||
Program), the recipient automatically receives a license from the
|
|
||||||
original licensor to copy, distribute or modify the Program subject to
|
|
||||||
these terms and conditions. You may not impose any further
|
|
||||||
restrictions on the recipients' exercise of the rights granted herein.
|
|
||||||
You are not responsible for enforcing compliance by third parties to
|
|
||||||
this License.
|
|
||||||
|
|
||||||
7. If, as a consequence of a court judgment or allegation of patent
|
|
||||||
infringement or for any other reason (not limited to patent issues),
|
|
||||||
conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot
|
|
||||||
distribute so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you
|
|
||||||
may not distribute the Program at all. For example, if a patent
|
|
||||||
license would not permit royalty-free redistribution of the Program by
|
|
||||||
all those who receive copies directly or indirectly through you, then
|
|
||||||
the only way you could satisfy both it and this License would be to
|
|
||||||
refrain entirely from distribution of the Program.
|
|
||||||
|
|
||||||
If any portion of this section is held invalid or unenforceable under
|
|
||||||
any particular circumstance, the balance of the section is intended to
|
|
||||||
apply and the section as a whole is intended to apply in other
|
|
||||||
circumstances.
|
|
||||||
|
|
||||||
It is not the purpose of this section to induce you to infringe any
|
|
||||||
patents or other property right claims or to contest validity of any
|
|
||||||
such claims; this section has the sole purpose of protecting the
|
|
||||||
integrity of the free software distribution system, which is
|
|
||||||
implemented by public license practices. Many people have made
|
|
||||||
generous contributions to the wide range of software distributed
|
|
||||||
through that system in reliance on consistent application of that
|
|
||||||
system; it is up to the author/donor to decide if he or she is willing
|
|
||||||
to distribute software through any other system and a licensee cannot
|
|
||||||
impose that choice.
|
|
||||||
|
|
||||||
This section is intended to make thoroughly clear what is believed to
|
|
||||||
be a consequence of the rest of this License.
|
|
||||||
|
|
||||||
8. If the distribution and/or use of the Program is restricted in
|
|
||||||
certain countries either by patents or by copyrighted interfaces, the
|
|
||||||
original copyright holder who places the Program under this License
|
|
||||||
may add an explicit geographical distribution limitation excluding
|
|
||||||
those countries, so that distribution is permitted only in or among
|
|
||||||
countries not thus excluded. In such case, this License incorporates
|
|
||||||
the limitation as if written in the body of this License.
|
|
||||||
|
|
||||||
9. The Free Software Foundation may publish revised and/or new versions
|
|
||||||
of the General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the Program
|
|
||||||
specifies a version number of this License which applies to it and "any
|
|
||||||
later version", you have the option of following the terms and conditions
|
|
||||||
either of that version or of any later version published by the Free
|
|
||||||
Software Foundation. If the Program does not specify a version number of
|
|
||||||
this License, you may choose any version ever published by the Free Software
|
|
||||||
Foundation.
|
|
||||||
|
|
||||||
10. If you wish to incorporate parts of the Program into other free
|
|
||||||
programs whose distribution conditions are different, write to the author
|
|
||||||
to ask for permission. For software which is copyrighted by the Free
|
|
||||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
|
||||||
make exceptions for this. Our decision will be guided by the two goals
|
|
||||||
of preserving the free status of all derivatives of our free software and
|
|
||||||
of promoting the sharing and reuse of software generally.
|
|
||||||
|
|
||||||
NO WARRANTY
|
|
||||||
|
|
||||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
|
||||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
|
||||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
|
||||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
|
||||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
|
||||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
|
||||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
|
||||||
REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
|
||||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
|
||||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
|
||||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
|
||||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
||||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGES.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
convey the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program is interactive, make it output a short notice like this
|
|
||||||
when it starts in an interactive mode:
|
|
||||||
|
|
||||||
Gnomovision version 69, Copyright (C) year name of author
|
|
||||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, the commands you use may
|
|
||||||
be called something other than `show w' and `show c'; they could even be
|
|
||||||
mouse-clicks or menu items--whatever suits your program.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or your
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
|
||||||
necessary. Here is a sample; alter the names:
|
|
||||||
|
|
||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
|
||||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
|
||||||
|
|
||||||
<signature of Ty Coon>, 1 April 1989
|
|
||||||
Ty Coon, President of Vice
|
|
||||||
|
|
||||||
This General Public License does not permit incorporating your program into
|
|
||||||
proprietary programs. If your program is a subroutine library, you may
|
|
||||||
consider it more useful to permit linking proprietary applications with the
|
|
||||||
library. If this is what you want to do, use the GNU Library General
|
|
||||||
Public License instead of this License.
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* configure.ac: New BUG-REPORT address.
|
|
||||||
|
|
||||||
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
|
|
||||||
|
|
||||||
* configure.ac: Require automake > 1.9.
|
|
||||||
|
|
||||||
2004-02-21 Joel Sherrill <joel@OARcorp.com>
|
|
||||||
|
|
||||||
* README: New file.
|
|
||||||
|
|
||||||
2004-02-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
|
||||||
|
|
||||||
* rtems-apt-conf.spec.in: Add @VERSION@ to Source0.
|
|
||||||
|
|
||||||
2004-02-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
|
||||||
|
|
||||||
* Makefile.am, gpg/gpg-pubkey-eac29b6f-3fe1f458, ChangeLog,
|
|
||||||
vendors.list.d/rtems.list, sources.list.d/rtems-4.6.list,
|
|
||||||
sources.list.d/rtems-4.7.list, configure.ac, .cvsignore, COPYING,
|
|
||||||
rtems-apt-conf.spec.in, INSTALL: New.
|
|
||||||
|
|
||||||
@@ -1,229 +0,0 @@
|
|||||||
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
|
|
||||||
Foundation, Inc.
|
|
||||||
|
|
||||||
This file is free documentation; the Free Software Foundation gives
|
|
||||||
unlimited permission to copy, distribute and modify it.
|
|
||||||
|
|
||||||
Basic Installation
|
|
||||||
==================
|
|
||||||
|
|
||||||
These are generic installation instructions.
|
|
||||||
|
|
||||||
The `configure' shell script attempts to guess correct values for
|
|
||||||
various system-dependent variables used during compilation. It uses
|
|
||||||
those values to create a `Makefile' in each directory of the package.
|
|
||||||
It may also create one or more `.h' files containing system-dependent
|
|
||||||
definitions. Finally, it creates a shell script `config.status' that
|
|
||||||
you can run in the future to recreate the current configuration, and a
|
|
||||||
file `config.log' containing compiler output (useful mainly for
|
|
||||||
debugging `configure').
|
|
||||||
|
|
||||||
It can also use an optional file (typically called `config.cache'
|
|
||||||
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
|
||||||
the results of its tests to speed up reconfiguring. (Caching is
|
|
||||||
disabled by default to prevent problems with accidental use of stale
|
|
||||||
cache files.)
|
|
||||||
|
|
||||||
If you need to do unusual things to compile the package, please try
|
|
||||||
to figure out how `configure' could check whether to do them, and mail
|
|
||||||
diffs or instructions to the address given in the `README' so they can
|
|
||||||
be considered for the next release. If you are using the cache, and at
|
|
||||||
some point `config.cache' contains results you don't want to keep, you
|
|
||||||
may remove or edit it.
|
|
||||||
|
|
||||||
The file `configure.ac' (or `configure.in') is used to create
|
|
||||||
`configure' by a program called `autoconf'. You only need
|
|
||||||
`configure.ac' if you want to change it or regenerate `configure' using
|
|
||||||
a newer version of `autoconf'.
|
|
||||||
|
|
||||||
The simplest way to compile this package is:
|
|
||||||
|
|
||||||
1. `cd' to the directory containing the package's source code and type
|
|
||||||
`./configure' to configure the package for your system. If you're
|
|
||||||
using `csh' on an old version of System V, you might need to type
|
|
||||||
`sh ./configure' instead to prevent `csh' from trying to execute
|
|
||||||
`configure' itself.
|
|
||||||
|
|
||||||
Running `configure' takes awhile. While running, it prints some
|
|
||||||
messages telling which features it is checking for.
|
|
||||||
|
|
||||||
2. Type `make' to compile the package.
|
|
||||||
|
|
||||||
3. Optionally, type `make check' to run any self-tests that come with
|
|
||||||
the package.
|
|
||||||
|
|
||||||
4. Type `make install' to install the programs and any data files and
|
|
||||||
documentation.
|
|
||||||
|
|
||||||
5. You can remove the program binaries and object files from the
|
|
||||||
source code directory by typing `make clean'. To also remove the
|
|
||||||
files that `configure' created (so you can compile the package for
|
|
||||||
a different kind of computer), type `make distclean'. There is
|
|
||||||
also a `make maintainer-clean' target, but that is intended mainly
|
|
||||||
for the package's developers. If you use it, you may have to get
|
|
||||||
all sorts of other programs in order to regenerate files that came
|
|
||||||
with the distribution.
|
|
||||||
|
|
||||||
Compilers and Options
|
|
||||||
=====================
|
|
||||||
|
|
||||||
Some systems require unusual options for compilation or linking that
|
|
||||||
the `configure' script does not know about. Run `./configure --help'
|
|
||||||
for details on some of the pertinent environment variables.
|
|
||||||
|
|
||||||
You can give `configure' initial values for configuration parameters
|
|
||||||
by setting variables in the command line or in the environment. Here
|
|
||||||
is an example:
|
|
||||||
|
|
||||||
./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
|
|
||||||
|
|
||||||
*Note Defining Variables::, for more details.
|
|
||||||
|
|
||||||
Compiling For Multiple Architectures
|
|
||||||
====================================
|
|
||||||
|
|
||||||
You can compile the package for more than one kind of computer at the
|
|
||||||
same time, by placing the object files for each architecture in their
|
|
||||||
own directory. To do this, you must use a version of `make' that
|
|
||||||
supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
|
||||||
directory where you want the object files and executables to go and run
|
|
||||||
the `configure' script. `configure' automatically checks for the
|
|
||||||
source code in the directory that `configure' is in and in `..'.
|
|
||||||
|
|
||||||
If you have to use a `make' that does not support the `VPATH'
|
|
||||||
variable, you have to compile the package for one architecture at a
|
|
||||||
time in the source code directory. After you have installed the
|
|
||||||
package for one architecture, use `make distclean' before reconfiguring
|
|
||||||
for another architecture.
|
|
||||||
|
|
||||||
Installation Names
|
|
||||||
==================
|
|
||||||
|
|
||||||
By default, `make install' will install the package's files in
|
|
||||||
`/usr/local/bin', `/usr/local/man', etc. You can specify an
|
|
||||||
installation prefix other than `/usr/local' by giving `configure' the
|
|
||||||
option `--prefix=PATH'.
|
|
||||||
|
|
||||||
You can specify separate installation prefixes for
|
|
||||||
architecture-specific files and architecture-independent files. If you
|
|
||||||
give `configure' the option `--exec-prefix=PATH', the package will use
|
|
||||||
PATH as the prefix for installing programs and libraries.
|
|
||||||
Documentation and other data files will still use the regular prefix.
|
|
||||||
|
|
||||||
In addition, if you use an unusual directory layout you can give
|
|
||||||
options like `--bindir=PATH' to specify different values for particular
|
|
||||||
kinds of files. Run `configure --help' for a list of the directories
|
|
||||||
you can set and what kinds of files go in them.
|
|
||||||
|
|
||||||
If the package supports it, you can cause programs to be installed
|
|
||||||
with an extra prefix or suffix on their names by giving `configure' the
|
|
||||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
|
||||||
|
|
||||||
Optional Features
|
|
||||||
=================
|
|
||||||
|
|
||||||
Some packages pay attention to `--enable-FEATURE' options to
|
|
||||||
`configure', where FEATURE indicates an optional part of the package.
|
|
||||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
|
||||||
is something like `gnu-as' or `x' (for the X Window System). The
|
|
||||||
`README' should mention any `--enable-' and `--with-' options that the
|
|
||||||
package recognizes.
|
|
||||||
|
|
||||||
For packages that use the X Window System, `configure' can usually
|
|
||||||
find the X include and library files automatically, but if it doesn't,
|
|
||||||
you can use the `configure' options `--x-includes=DIR' and
|
|
||||||
`--x-libraries=DIR' to specify their locations.
|
|
||||||
|
|
||||||
Specifying the System Type
|
|
||||||
==========================
|
|
||||||
|
|
||||||
There may be some features `configure' cannot figure out
|
|
||||||
automatically, but needs to determine by the type of machine the package
|
|
||||||
will run on. Usually, assuming the package is built to be run on the
|
|
||||||
_same_ architectures, `configure' can figure that out, but if it prints
|
|
||||||
a message saying it cannot guess the machine type, give it the
|
|
||||||
`--build=TYPE' option. TYPE can either be a short name for the system
|
|
||||||
type, such as `sun4', or a canonical name which has the form:
|
|
||||||
|
|
||||||
CPU-COMPANY-SYSTEM
|
|
||||||
|
|
||||||
where SYSTEM can have one of these forms:
|
|
||||||
|
|
||||||
OS KERNEL-OS
|
|
||||||
|
|
||||||
See the file `config.sub' for the possible values of each field. If
|
|
||||||
`config.sub' isn't included in this package, then this package doesn't
|
|
||||||
need to know the machine type.
|
|
||||||
|
|
||||||
If you are _building_ compiler tools for cross-compiling, you should
|
|
||||||
use the `--target=TYPE' option to select the type of system they will
|
|
||||||
produce code for.
|
|
||||||
|
|
||||||
If you want to _use_ a cross compiler, that generates code for a
|
|
||||||
platform different from the build platform, you should specify the
|
|
||||||
"host" platform (i.e., that on which the generated programs will
|
|
||||||
eventually be run) with `--host=TYPE'.
|
|
||||||
|
|
||||||
Sharing Defaults
|
|
||||||
================
|
|
||||||
|
|
||||||
If you want to set default values for `configure' scripts to share,
|
|
||||||
you can create a site shell script called `config.site' that gives
|
|
||||||
default values for variables like `CC', `cache_file', and `prefix'.
|
|
||||||
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
|
||||||
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
|
||||||
`CONFIG_SITE' environment variable to the location of the site script.
|
|
||||||
A warning: not all `configure' scripts look for a site script.
|
|
||||||
|
|
||||||
Defining Variables
|
|
||||||
==================
|
|
||||||
|
|
||||||
Variables not defined in a site shell script can be set in the
|
|
||||||
environment passed to `configure'. However, some packages may run
|
|
||||||
configure again during the build, and the customized values of these
|
|
||||||
variables may be lost. In order to avoid this problem, you should set
|
|
||||||
them in the `configure' command line, using `VAR=value'. For example:
|
|
||||||
|
|
||||||
./configure CC=/usr/local2/bin/gcc
|
|
||||||
|
|
||||||
will cause the specified gcc to be used as the C compiler (unless it is
|
|
||||||
overridden in the site shell script).
|
|
||||||
|
|
||||||
`configure' Invocation
|
|
||||||
======================
|
|
||||||
|
|
||||||
`configure' recognizes the following options to control how it
|
|
||||||
operates.
|
|
||||||
|
|
||||||
`--help'
|
|
||||||
`-h'
|
|
||||||
Print a summary of the options to `configure', and exit.
|
|
||||||
|
|
||||||
`--version'
|
|
||||||
`-V'
|
|
||||||
Print the version of Autoconf used to generate the `configure'
|
|
||||||
script, and exit.
|
|
||||||
|
|
||||||
`--cache-file=FILE'
|
|
||||||
Enable the cache: use and save the results of the tests in FILE,
|
|
||||||
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
|
||||||
disable caching.
|
|
||||||
|
|
||||||
`--config-cache'
|
|
||||||
`-C'
|
|
||||||
Alias for `--cache-file=config.cache'.
|
|
||||||
|
|
||||||
`--quiet'
|
|
||||||
`--silent'
|
|
||||||
`-q'
|
|
||||||
Do not print messages saying which checks are being made. To
|
|
||||||
suppress all normal output, redirect it to `/dev/null' (any error
|
|
||||||
messages will still be shown).
|
|
||||||
|
|
||||||
`--srcdir=DIR'
|
|
||||||
Look for the package's source code in directory DIR. Usually
|
|
||||||
`configure' can determine that directory automatically.
|
|
||||||
|
|
||||||
`configure' also accepts some other, not widely useful, options. Run
|
|
||||||
`configure --help' for more details.
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
aptconfdir = $(sysconfdir)/apt
|
|
||||||
|
|
||||||
sources_list_ddir = $(aptconfdir)/sources.list.d
|
|
||||||
dist_sources_list_d_DATA = sources.list.d/rtems-4.6.list
|
|
||||||
dist_sources_list_d_DATA += sources.list.d/rtems-4.7.list
|
|
||||||
|
|
||||||
vendors_list_ddir = $(aptconfdir)/vendors.list.d
|
|
||||||
dist_vendors_list_d_DATA = vendors.list.d/rtems.list
|
|
||||||
|
|
||||||
gpgdir = $(aptconfdir)/gpg
|
|
||||||
dist_gpg_DATA = gpg/gpg-pubkey-eac29b6f-3fe1f458
|
|
||||||
|
|
||||||
noinst_HEADERS = rtems-apt-conf.spec
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#
|
|
||||||
# $Id$
|
|
||||||
#
|
|
||||||
|
|
||||||
Instructions on building:
|
|
||||||
|
|
||||||
To build them:
|
|
||||||
|
|
||||||
1. Check out the source from cvs.
|
|
||||||
2. Make sure to have automake >= 1.8 in $PATH (eg. rtems-4.7-automake)
|
|
||||||
3. autoreconf -i
|
|
||||||
4. ./configure
|
|
||||||
5. make dist
|
|
||||||
6. rpmbuild -ta rtems-apt-conf-0.0.tar.bz2
|
|
||||||
|
|
||||||
This generates 2 *.noarch.rpms,
|
|
||||||
one containing the setup for RH-7.3 + rtems-4.6
|
|
||||||
and one containing the setup for RH-7.3 + rtems-4.7
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
# -*- Autoconf -*-
|
|
||||||
# Process this file with autoconf to produce a configure script.
|
|
||||||
|
|
||||||
AC_PREREQ(2.59)
|
|
||||||
AC_INIT([rtems-apt-conf],[0.0],[http://www.rtems.org/bugzilla])
|
|
||||||
AC_CONFIG_SRCDIR([sources.list.d/rtems-4.6.list])
|
|
||||||
AC_CONFIG_AUX_DIR([.])
|
|
||||||
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip 1.9])
|
|
||||||
AC_CONFIG_FILES([Makefile
|
|
||||||
rtems-apt-conf.spec
|
|
||||||
])
|
|
||||||
AC_OUTPUT
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
|
||||||
Version: GnuPG v1.2.3 (GNU/Linux)
|
|
||||||
|
|
||||||
mQGiBD/h9FgRBACIvWgCQP+mXUroVHIYCjPegO2RnTAW5Czpbi97eBcR/mb4U+5K
|
|
||||||
hgHscM7Q3AGMgHh21gqf8Pcrx2zkf0q3p3EFiBH6u59ZXoZg1riaaQHnHO2zNtWg
|
|
||||||
AeTja8kh96WpHtkMTvnq4J6OKJ6Aaj3W00W5V67AZbAvBf02VZePCWB1wwCgudqd
|
|
||||||
IqeyYyyOwQIiX4O9H+mhX48D/RfummZ3j9iBeq9vIhSpLiN7yzAdD7KynFV0Z32u
|
|
||||||
e8ulc+xs6BZsT/NtUij5JP022jJ1f5qQv3uGSqDt9BlAN75UFIjuAZChK38vWDNQ
|
|
||||||
KIaZIHXk2y0l2vd7R8P1lRh9ryZK98VbjqVrQUmsfR0hpPVyWI8lCPD+1TwQLV6h
|
|
||||||
HYyJA/9KXK32S9pMOSwY3qDbrATQYg5VIYa8O5xnIV14CWv2ucUQxqj/pm9sllYO
|
|
||||||
HtSd/1/FYyZbtqF5tFVxNLFH9wr8WtzvkcddBYFrycamt9dScAe+DIXbsrQ3DVI2
|
|
||||||
PKmypKfMPlGkCCiOFkdBlCCVpcl0OU7v1O0rFtC9fE2ZbgFvabQ6UlRFTVMgUGFj
|
|
||||||
a2FnZXIgKFJURU1TIFBhY2thZ2VyKSA8cnRlbXMucGFja2FnZXJAcnRlbXMuY29t
|
|
||||||
PohXBBMRAgAXBQI/4fRYBQsHCgMEAxUDAgMWAgECF4AACgkQRqkmwurCm29gWQCg
|
|
||||||
gU07Fcv6dj6j7NCHpzZHGiEdOisAnj6XXw/nNC3pw9lquNqST5TjgbhzuQENBD/h
|
|
||||||
9FsQBADIsSYrCsRefX22akbsXrDft4b1jCn+Z7snK506kb7tlkhpiQAKcYHdz8jy
|
|
||||||
gdG3pqsnBcvuBuWFy5rTh0PMaoLeNAQDLbD2Pl4a9109ja2Ot/3R4w8jvXoUs+Bn
|
|
||||||
QwhvulSsad1jxyx4DEqkx3dCOZtKEUa0p0YDOx7DBk4u6MaWZwADBwP/Wrxtj7qk
|
|
||||||
7qCEAT/+2vkWkGXNkHzJI/sfkiVuA8xEzjQC0ZZYUn7zUzOQHYSly1kxZZUsIP3k
|
|
||||||
UuNXT7/9XbPkhytjz+qS8iODzQnsG2etoROYxg+OR1BjaS8zfWfZs83nCITwSXdP
|
|
||||||
76JCCA8ssR43Xpc4zFtNkPlycRoPCDIWhU6IRgQYEQIABgUCP+H0WwAKCRBGqSbC
|
|
||||||
6sKbb6lmAKCa9k/S3V/nWjOc05xXgZJ1lnLCTwCgsSDmdeef3bs5mSmIm4zmKAwJ
|
|
||||||
G4A=
|
|
||||||
=jt7V
|
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
Name: @PACKAGE_NAME@
|
|
||||||
Version: @VERSION@
|
|
||||||
Release: 0
|
|
||||||
Epoch: 0
|
|
||||||
|
|
||||||
License: GPL
|
|
||||||
Source0: @PACKAGE_NAME@-@VERSION@.tar.bz2
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
Group: RTEMS
|
|
||||||
Summary: Apt configuration for RTEMS
|
|
||||||
%description
|
|
||||||
Apt configuration files to access the apt repositories at ftp://ftp.rtems.com
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
|
||||||
%configure
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%package -n rtems-4.6-apt-conf
|
|
||||||
Summary: Apt configuration for RTEMS/4.6
|
|
||||||
Group: RTEMS/4.6
|
|
||||||
Requires: apt >= 0.5.15cnc1
|
|
||||||
|
|
||||||
%description -n rtems-4.6-apt-conf
|
|
||||||
Apt configuration for RTEMS/4.6
|
|
||||||
|
|
||||||
%files -n rtems-4.6-apt-conf
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_sysconfdir}/apt/gpg
|
|
||||||
%{_sysconfdir}/apt/sources.list.d/rtems-4.6.list
|
|
||||||
%{_sysconfdir}/apt/vendors.list.d/rtems.list
|
|
||||||
|
|
||||||
%post -n rtems-4.6-apt-conf
|
|
||||||
if test -f %{_sysconfdir}/apt/sources.list; then
|
|
||||||
cp %{_sysconfdir}/apt/sources.list %{_sysconfdir}/apt/sources.list.rpmsave
|
|
||||||
sed '/rpm.*ftp:\/\/ftp\.rtems\.com.*redhat.*7\.3.*apt.*rtems-4\.6/d' \
|
|
||||||
< %{_sysconfdir}/apt/sources.list.rpmsave \
|
|
||||||
> %{_sysconfdir}/apt/sources.list
|
|
||||||
fi
|
|
||||||
|
|
||||||
%package -n rtems-4.7-apt-conf
|
|
||||||
Summary: Apt configuration for RTEMS/4.7
|
|
||||||
Group: RTEMS/4.7
|
|
||||||
Requires: apt >= 0.5.15cnc1
|
|
||||||
|
|
||||||
%description -n rtems-4.7-apt-conf
|
|
||||||
Apt configuration for RTEMS/4.7
|
|
||||||
|
|
||||||
%files -n rtems-4.7-apt-conf
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_sysconfdir}/apt/gpg
|
|
||||||
%{_sysconfdir}/apt/sources.list.d/rtems-4.7.list
|
|
||||||
%{_sysconfdir}/apt/vendors.list.d/rtems.list
|
|
||||||
|
|
||||||
%post -n rtems-4.7-apt-conf
|
|
||||||
if test -f %{_sysconfdir}/apt/sources.list; then
|
|
||||||
cp %{_sysconfdir}/apt/sources.list %{_sysconfdir}/apt/sources.list.rpmsave
|
|
||||||
sed '/rpm.*ftp:\/\/ftp\.rtems\.com.*redhat.*7\.3.*apt.*rtems-4\.7/d' \
|
|
||||||
< %{_sysconfdir}/apt/sources.list.rpmsave \
|
|
||||||
> %{_sysconfdir}/apt/sources.list
|
|
||||||
fi
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# Repository for RTEMS-4.6 rpms
|
|
||||||
|
|
||||||
rpm ftp://ftp.rtems.com/pub/rtems/linux redhat/7.3/i386/apt rtems-4.6
|
|
||||||
rpm-src ftp://ftp.rtems.com/pub/rtems/linux redhat/7.3/i386/apt rtems-4.6
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# Repository for RTEMS-4.7 rpms
|
|
||||||
|
|
||||||
rpm ftp://ftp.rtems.com/pub/rtems/linux redhat/7.3/i386/apt rtems-4.7
|
|
||||||
rpm-src ftp://ftp.rtems.com/pub/rtems/linux redhat/7.3/i386/apt rtems-4.7
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
simple-key "rtems" {
|
|
||||||
Fingerprint "CD738F4967B9B2F95EEA2FE846A926C2EAC29B6F";
|
|
||||||
Name "RTEMS Packager (RTEMS Packager) <rtems.packager@rtems.com>";
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
INSTALL
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
aclocal.m4
|
|
||||||
configure
|
|
||||||
config.*
|
|
||||||
autom4te*
|
|
||||||
missing
|
|
||||||
install-sh
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
Chris Johns <chrisj@rtems.org>
|
|
||||||
- Testing.
|
|
||||||
- Bugfixes.
|
|
||||||
- mingw32.
|
|
||||||
|
|
||||||
Joel Sherrill <joel@oarcorp.com>
|
|
||||||
- Testing.
|
|
||||||
@@ -1,340 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 2, June 1991
|
|
||||||
|
|
||||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
|
||||||
License is intended to guarantee your freedom to share and change free
|
|
||||||
software--to make sure the software is free for all its users. This
|
|
||||||
General Public License applies to most of the Free Software
|
|
||||||
Foundation's software and to any other program whose authors commit to
|
|
||||||
using it. (Some other Free Software Foundation software is covered by
|
|
||||||
the GNU Library General Public License instead.) You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
this service if you wish), that you receive source code or can get it
|
|
||||||
if you want it, that you can change the software or use pieces of it
|
|
||||||
in new free programs; and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to make restrictions that forbid
|
|
||||||
anyone to deny you these rights or to ask you to surrender the rights.
|
|
||||||
These restrictions translate to certain responsibilities for you if you
|
|
||||||
distribute copies of the software, or if you modify it.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must give the recipients all the rights that
|
|
||||||
you have. You must make sure that they, too, receive or can get the
|
|
||||||
source code. And you must show them these terms so they know their
|
|
||||||
rights.
|
|
||||||
|
|
||||||
We protect your rights with two steps: (1) copyright the software, and
|
|
||||||
(2) offer you this license which gives you legal permission to copy,
|
|
||||||
distribute and/or modify the software.
|
|
||||||
|
|
||||||
Also, for each author's protection and ours, we want to make certain
|
|
||||||
that everyone understands that there is no warranty for this free
|
|
||||||
software. If the software is modified by someone else and passed on, we
|
|
||||||
want its recipients to know that what they have is not the original, so
|
|
||||||
that any problems introduced by others will not reflect on the original
|
|
||||||
authors' reputations.
|
|
||||||
|
|
||||||
Finally, any free program is threatened constantly by software
|
|
||||||
patents. We wish to avoid the danger that redistributors of a free
|
|
||||||
program will individually obtain patent licenses, in effect making the
|
|
||||||
program proprietary. To prevent this, we have made it clear that any
|
|
||||||
patent must be licensed for everyone's free use or not licensed at all.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. This License applies to any program or other work which contains
|
|
||||||
a notice placed by the copyright holder saying it may be distributed
|
|
||||||
under the terms of this General Public License. The "Program", below,
|
|
||||||
refers to any such program or work, and a "work based on the Program"
|
|
||||||
means either the Program or any derivative work under copyright law:
|
|
||||||
that is to say, a work containing the Program or a portion of it,
|
|
||||||
either verbatim or with modifications and/or translated into another
|
|
||||||
language. (Hereinafter, translation is included without limitation in
|
|
||||||
the term "modification".) Each licensee is addressed as "you".
|
|
||||||
|
|
||||||
Activities other than copying, distribution and modification are not
|
|
||||||
covered by this License; they are outside its scope. The act of
|
|
||||||
running the Program is not restricted, and the output from the Program
|
|
||||||
is covered only if its contents constitute a work based on the
|
|
||||||
Program (independent of having been made by running the Program).
|
|
||||||
Whether that is true depends on what the Program does.
|
|
||||||
|
|
||||||
1. You may copy and distribute verbatim copies of the Program's
|
|
||||||
source code as you receive it, in any medium, provided that you
|
|
||||||
conspicuously and appropriately publish on each copy an appropriate
|
|
||||||
copyright notice and disclaimer of warranty; keep intact all the
|
|
||||||
notices that refer to this License and to the absence of any warranty;
|
|
||||||
and give any other recipients of the Program a copy of this License
|
|
||||||
along with the Program.
|
|
||||||
|
|
||||||
You may charge a fee for the physical act of transferring a copy, and
|
|
||||||
you may at your option offer warranty protection in exchange for a fee.
|
|
||||||
|
|
||||||
2. You may modify your copy or copies of the Program or any portion
|
|
||||||
of it, thus forming a work based on the Program, and copy and
|
|
||||||
distribute such modifications or work under the terms of Section 1
|
|
||||||
above, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) You must cause the modified files to carry prominent notices
|
|
||||||
stating that you changed the files and the date of any change.
|
|
||||||
|
|
||||||
b) You must cause any work that you distribute or publish, that in
|
|
||||||
whole or in part contains or is derived from the Program or any
|
|
||||||
part thereof, to be licensed as a whole at no charge to all third
|
|
||||||
parties under the terms of this License.
|
|
||||||
|
|
||||||
c) If the modified program normally reads commands interactively
|
|
||||||
when run, you must cause it, when started running for such
|
|
||||||
interactive use in the most ordinary way, to print or display an
|
|
||||||
announcement including an appropriate copyright notice and a
|
|
||||||
notice that there is no warranty (or else, saying that you provide
|
|
||||||
a warranty) and that users may redistribute the program under
|
|
||||||
these conditions, and telling the user how to view a copy of this
|
|
||||||
License. (Exception: if the Program itself is interactive but
|
|
||||||
does not normally print such an announcement, your work based on
|
|
||||||
the Program is not required to print an announcement.)
|
|
||||||
|
|
||||||
These requirements apply to the modified work as a whole. If
|
|
||||||
identifiable sections of that work are not derived from the Program,
|
|
||||||
and can be reasonably considered independent and separate works in
|
|
||||||
themselves, then this License, and its terms, do not apply to those
|
|
||||||
sections when you distribute them as separate works. But when you
|
|
||||||
distribute the same sections as part of a whole which is a work based
|
|
||||||
on the Program, the distribution of the whole must be on the terms of
|
|
||||||
this License, whose permissions for other licensees extend to the
|
|
||||||
entire whole, and thus to each and every part regardless of who wrote it.
|
|
||||||
|
|
||||||
Thus, it is not the intent of this section to claim rights or contest
|
|
||||||
your rights to work written entirely by you; rather, the intent is to
|
|
||||||
exercise the right to control the distribution of derivative or
|
|
||||||
collective works based on the Program.
|
|
||||||
|
|
||||||
In addition, mere aggregation of another work not based on the Program
|
|
||||||
with the Program (or with a work based on the Program) on a volume of
|
|
||||||
a storage or distribution medium does not bring the other work under
|
|
||||||
the scope of this License.
|
|
||||||
|
|
||||||
3. You may copy and distribute the Program (or a work based on it,
|
|
||||||
under Section 2) in object code or executable form under the terms of
|
|
||||||
Sections 1 and 2 above provided that you also do one of the following:
|
|
||||||
|
|
||||||
a) Accompany it with the complete corresponding machine-readable
|
|
||||||
source code, which must be distributed under the terms of Sections
|
|
||||||
1 and 2 above on a medium customarily used for software interchange; or,
|
|
||||||
|
|
||||||
b) Accompany it with a written offer, valid for at least three
|
|
||||||
years, to give any third party, for a charge no more than your
|
|
||||||
cost of physically performing source distribution, a complete
|
|
||||||
machine-readable copy of the corresponding source code, to be
|
|
||||||
distributed under the terms of Sections 1 and 2 above on a medium
|
|
||||||
customarily used for software interchange; or,
|
|
||||||
|
|
||||||
c) Accompany it with the information you received as to the offer
|
|
||||||
to distribute corresponding source code. (This alternative is
|
|
||||||
allowed only for noncommercial distribution and only if you
|
|
||||||
received the program in object code or executable form with such
|
|
||||||
an offer, in accord with Subsection b above.)
|
|
||||||
|
|
||||||
The source code for a work means the preferred form of the work for
|
|
||||||
making modifications to it. For an executable work, complete source
|
|
||||||
code means all the source code for all modules it contains, plus any
|
|
||||||
associated interface definition files, plus the scripts used to
|
|
||||||
control compilation and installation of the executable. However, as a
|
|
||||||
special exception, the source code distributed need not include
|
|
||||||
anything that is normally distributed (in either source or binary
|
|
||||||
form) with the major components (compiler, kernel, and so on) of the
|
|
||||||
operating system on which the executable runs, unless that component
|
|
||||||
itself accompanies the executable.
|
|
||||||
|
|
||||||
If distribution of executable or object code is made by offering
|
|
||||||
access to copy from a designated place, then offering equivalent
|
|
||||||
access to copy the source code from the same place counts as
|
|
||||||
distribution of the source code, even though third parties are not
|
|
||||||
compelled to copy the source along with the object code.
|
|
||||||
|
|
||||||
4. You may not copy, modify, sublicense, or distribute the Program
|
|
||||||
except as expressly provided under this License. Any attempt
|
|
||||||
otherwise to copy, modify, sublicense or distribute the Program is
|
|
||||||
void, and will automatically terminate your rights under this License.
|
|
||||||
However, parties who have received copies, or rights, from you under
|
|
||||||
this License will not have their licenses terminated so long as such
|
|
||||||
parties remain in full compliance.
|
|
||||||
|
|
||||||
5. You are not required to accept this License, since you have not
|
|
||||||
signed it. However, nothing else grants you permission to modify or
|
|
||||||
distribute the Program or its derivative works. These actions are
|
|
||||||
prohibited by law if you do not accept this License. Therefore, by
|
|
||||||
modifying or distributing the Program (or any work based on the
|
|
||||||
Program), you indicate your acceptance of this License to do so, and
|
|
||||||
all its terms and conditions for copying, distributing or modifying
|
|
||||||
the Program or works based on it.
|
|
||||||
|
|
||||||
6. Each time you redistribute the Program (or any work based on the
|
|
||||||
Program), the recipient automatically receives a license from the
|
|
||||||
original licensor to copy, distribute or modify the Program subject to
|
|
||||||
these terms and conditions. You may not impose any further
|
|
||||||
restrictions on the recipients' exercise of the rights granted herein.
|
|
||||||
You are not responsible for enforcing compliance by third parties to
|
|
||||||
this License.
|
|
||||||
|
|
||||||
7. If, as a consequence of a court judgment or allegation of patent
|
|
||||||
infringement or for any other reason (not limited to patent issues),
|
|
||||||
conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot
|
|
||||||
distribute so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you
|
|
||||||
may not distribute the Program at all. For example, if a patent
|
|
||||||
license would not permit royalty-free redistribution of the Program by
|
|
||||||
all those who receive copies directly or indirectly through you, then
|
|
||||||
the only way you could satisfy both it and this License would be to
|
|
||||||
refrain entirely from distribution of the Program.
|
|
||||||
|
|
||||||
If any portion of this section is held invalid or unenforceable under
|
|
||||||
any particular circumstance, the balance of the section is intended to
|
|
||||||
apply and the section as a whole is intended to apply in other
|
|
||||||
circumstances.
|
|
||||||
|
|
||||||
It is not the purpose of this section to induce you to infringe any
|
|
||||||
patents or other property right claims or to contest validity of any
|
|
||||||
such claims; this section has the sole purpose of protecting the
|
|
||||||
integrity of the free software distribution system, which is
|
|
||||||
implemented by public license practices. Many people have made
|
|
||||||
generous contributions to the wide range of software distributed
|
|
||||||
through that system in reliance on consistent application of that
|
|
||||||
system; it is up to the author/donor to decide if he or she is willing
|
|
||||||
to distribute software through any other system and a licensee cannot
|
|
||||||
impose that choice.
|
|
||||||
|
|
||||||
This section is intended to make thoroughly clear what is believed to
|
|
||||||
be a consequence of the rest of this License.
|
|
||||||
|
|
||||||
8. If the distribution and/or use of the Program is restricted in
|
|
||||||
certain countries either by patents or by copyrighted interfaces, the
|
|
||||||
original copyright holder who places the Program under this License
|
|
||||||
may add an explicit geographical distribution limitation excluding
|
|
||||||
those countries, so that distribution is permitted only in or among
|
|
||||||
countries not thus excluded. In such case, this License incorporates
|
|
||||||
the limitation as if written in the body of this License.
|
|
||||||
|
|
||||||
9. The Free Software Foundation may publish revised and/or new versions
|
|
||||||
of the General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the Program
|
|
||||||
specifies a version number of this License which applies to it and "any
|
|
||||||
later version", you have the option of following the terms and conditions
|
|
||||||
either of that version or of any later version published by the Free
|
|
||||||
Software Foundation. If the Program does not specify a version number of
|
|
||||||
this License, you may choose any version ever published by the Free Software
|
|
||||||
Foundation.
|
|
||||||
|
|
||||||
10. If you wish to incorporate parts of the Program into other free
|
|
||||||
programs whose distribution conditions are different, write to the author
|
|
||||||
to ask for permission. For software which is copyrighted by the Free
|
|
||||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
|
||||||
make exceptions for this. Our decision will be guided by the two goals
|
|
||||||
of preserving the free status of all derivatives of our free software and
|
|
||||||
of promoting the sharing and reuse of software generally.
|
|
||||||
|
|
||||||
NO WARRANTY
|
|
||||||
|
|
||||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
|
||||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
|
||||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
|
||||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
|
||||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
|
||||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
|
||||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
|
||||||
REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
|
||||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
|
||||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
|
||||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
|
||||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
||||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
|
||||||
POSSIBILITY OF SUCH DAMAGES.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
convey the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program is interactive, make it output a short notice like this
|
|
||||||
when it starts in an interactive mode:
|
|
||||||
|
|
||||||
Gnomovision version 69, Copyright (C) year name of author
|
|
||||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, the commands you use may
|
|
||||||
be called something other than `show w' and `show c'; they could even be
|
|
||||||
mouse-clicks or menu items--whatever suits your program.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or your
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
|
||||||
necessary. Here is a sample; alter the names:
|
|
||||||
|
|
||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
|
||||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
|
||||||
|
|
||||||
<signature of Ty Coon>, 1 April 1989
|
|
||||||
Ty Coon, President of Vice
|
|
||||||
|
|
||||||
This General Public License does not permit incorporating your program into
|
|
||||||
proprietary programs. If your program is a subroutine library, you may
|
|
||||||
consider it more useful to permit linking proprietary applications with the
|
|
||||||
library. If this is what you want to do, use the GNU Library General
|
|
||||||
Public License instead of this License.
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* configure.ac: New BUG-REPORT address.
|
|
||||||
|
|
||||||
2006-11-14 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* configure.ac, Makefile.am, rtems-4.7/Makefile.am: Remove tic4x.
|
|
||||||
* rtems-4.7/tic4x/: Remove.
|
|
||||||
|
|
||||||
2006-10-19 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* autotools/Makefile.am, autotools/automake.add: Update to
|
|
||||||
automake-1.10.
|
|
||||||
|
|
||||||
2006-10-19 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* rtems-4.7/bfin/Makefile.am, rtems-4.7/bfin/.cvsignore:
|
|
||||||
Remove (Development in CVS-HEAD, only).
|
|
||||||
|
|
||||||
2006-10-09 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* configure.ac, rtems-4.7/Makefile.am: Remove bfin.
|
|
||||||
|
|
||||||
2006-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* rtems4.7/arm/gcc-sources.add, rtems4.7/h8300/gcc-sources.add,
|
|
||||||
rtems4.7/i386/gcc-sources.add, rtems4.7/m68k/gcc-sources.add,
|
|
||||||
rtems4.7/mips/gcc-sources.add, rtems4.7/powerpc/gcc-sources.add
|
|
||||||
rtems4.7/sh/gcc-sources.add, rtems4.7/sparc/gcc-sources.add
|
|
||||||
rtems4.7/tic4x/gcc-sources.add: Add gcc-4.0.3.
|
|
||||||
|
|
||||||
2006-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
* gcc/build.add: Revert --disable-libssp etc. hacks.
|
|
||||||
|
|
||||||
2006-08-22 Chris Johns <chrisj@rtems.org>
|
|
||||||
|
|
||||||
* rtems4.7/avr/gcc-sources.add: Add the 4.0.3 patch.
|
|
||||||
* patches/gcc-core-4.0.3-rtems-20060822.diff:
|
|
||||||
The .exe for the versioned execuable for MinGW.
|
|
||||||
|
|
||||||
2006-08-21 Joel Sherrill <joel@OARcorp.com>
|
|
||||||
|
|
||||||
* rtems4.7/h8300/binutils-sources.add,
|
|
||||||
rtems4.7/m68k/binutils-sources.add: Add h8300 _tinydata patch and
|
|
||||||
bump patch for targets needing it.
|
|
||||||
* patches/binutils-2.17-rtems-20060815.diff: New file.
|
|
||||||
|
|
||||||
2006-08-11 Joel Sherrill <joel@oarcorp.com>
|
|
||||||
|
|
||||||
* configure.ac, gcc/build.add, gcc/target-gcc.add: Add bfin target
|
|
||||||
prior to merge. Add ability to disable libssp and libstdcxx-pch which
|
|
||||||
apparently are required to build the Blackfin port.
|
|
||||||
* patches/binutils-2.17-rtems-bfin-20060810.diff,
|
|
||||||
patches/gcc-4.1.1-bfinrtems-20060810a.diff,
|
|
||||||
patches/gdb-6.5-bfinrtems-20060810a.diff,
|
|
||||||
patches/newlib-1.14.0-bfinrtems-20060810a.diff,
|
|
||||||
rtems4.7/bfin/.cvsignore, rtems4.7/bfin/Makefile.am,
|
|
||||||
rtems4.7/bfin/binutils-sources.add, rtems4.7/bfin/gcc-sources.add,
|
|
||||||
rtems4.7/bfin/gdb-sources.add: New files.
|
|
||||||
|
|
||||||
2006-08-09 Joel Sherrill <joel@OARcorp.com>
|
|
||||||
|
|
||||||
* .cvsignore: Add INSTALL.
|
|
||||||
|
|
||||||
2006-07-19 Chris Johns <chrisj@rtems.org>
|
|
||||||
|
|
||||||
* patches/gcc-core-4.1.1-rtems-20060720.diff:
|
|
||||||
Added patch to fix GCC bug PR28400.
|
|
||||||
|
|
||||||
2006-07-13 Joel Sherrill <joel@oarcorp.com>
|
|
||||||
|
|
||||||
* configure.ac, rtems4.7/Makefile.am, rtems4.7/arm/Makefile.am,
|
|
||||||
rtems4.7/arm/gdb-sources.add, rtems4.7/avr/Makefile.am,
|
|
||||||
rtems4.7/avr/gdb-sources.add, rtems4.7/h8300/Makefile.am,
|
|
||||||
rtems4.7/h8300/gdb-sources.add, rtems4.7/i386/Makefile.am,
|
|
||||||
rtems4.7/i386/gdb-sources.add, rtems4.7/m68k/Makefile.am,
|
|
||||||
rtems4.7/m68k/gdb-sources.add, rtems4.7/mips/Makefile.am,
|
|
||||||
rtems4.7/mips/gdb-sources.add, rtems4.7/powerpc/Makefile.am,
|
|
||||||
rtems4.7/powerpc/gdb-sources.add, rtems4.7/sh/Makefile.am,
|
|
||||||
rtems4.7/sh/gdb-sources.add, rtems4.7/sparc/Makefile.am,
|
|
||||||
rtems4.7/sparc/gdb-sources.add, rtems4.7/tic4x/gdb-sources.add:
|
|
||||||
Updated to gdb 6.5
|
|
||||||
* patches/gdb-6.5-rtems-20060713.diff, rtems4.7/mipstx39/.cvsignore,
|
|
||||||
rtems4.7/mipstx39/Makefile.am, rtems4.7/mipstx39/gdb-sources.add: New files.
|
|
||||||
|
|
||||||
2006-07-12 Joel Sherrill <joel@oarcorp.com>
|
|
||||||
|
|
||||||
* rtems4.7/arm/gdb-sources.add, rtems4.7/avr/gdb-sources.add,
|
|
||||||
rtems4.7/h8300/gdb-sources.add, rtems4.7/i386/gdb-sources.add,
|
|
||||||
rtems4.7/m68k/gdb-sources.add, rtems4.7/mips/gdb-sources.add,
|
|
||||||
rtems4.7/powerpc/gdb-sources.add, rtems4.7/sh/gdb-sources.add,
|
|
||||||
rtems4.7/sparc/gdb-sources.add, rtems4.7/tic4x/gdb-sources.add:
|
|
||||||
Update gdb to use newer patch. This lets sparc build simulator and
|
|
||||||
mips build at all.
|
|
||||||
* patches/gdb-6.4-rtems-20060712.diff: New file.
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
EXTRA_DIST =
|
|
||||||
|
|
||||||
SUBDIRS = @HOST_SUBDIRS@ @TARGET_SUBDIRS@
|
|
||||||
|
|
||||||
DIST_SUBDIRS = cygwin
|
|
||||||
DIST_SUBDIRS += freebsd5.2
|
|
||||||
DIST_SUBDIRS += freebsd6.0
|
|
||||||
DIST_SUBDIRS += freebsd6.1
|
|
||||||
DIST_SUBDIRS += mingw32
|
|
||||||
DIST_SUBDIRS += solaris2.7
|
|
||||||
DIST_SUBDIRS += rtems4.7
|
|
||||||
|
|
||||||
DIST_SUBDIRS += autotools
|
|
||||||
|
|
||||||
EXTRA_DIST += specstrip
|
|
||||||
EXTRA_DIST += $(srcdir)/patches/*.diff
|
|
||||||
|
|
||||||
install-patches:
|
|
||||||
@rpmsourcedir=`rpm --eval '%_sourcedir'`; \
|
|
||||||
for f in $(srcdir)/patches/*.diff; do \
|
|
||||||
echo "$(INSTALL_DATA) $$f $$rpmsourcedir"; \
|
|
||||||
$(INSTALL_DATA) $$f $$rpmsourcedir; \
|
|
||||||
done
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
2006-07-24 Add provisory/preliminary autotools support.
|
|
||||||
|
|
||||||
2006-07-23 Rename "*-base-*" packages into <tool>-common.
|
|
||||||
Rename GCC's "*-<lang>" packages into "*-gcc-<lang>".
|
|
||||||
Many small directory ownership fixes.
|
|
||||||
Build all GCC packages with --enable-threads.
|
|
||||||
|
|
||||||
2006-07-10 Completely reworked and restructurized.
|
|
||||||
|
|
||||||
2006-03-10 Add preliminary rtems-gdb specs.
|
|
||||||
(Immature, incomplete, needs further testing).
|
|
||||||
|
|
||||||
2006-03-09 Add fortran and objc to GCC's default languages for freebsd5.2,
|
|
||||||
freebsd6.0 and solaris.
|
|
||||||
|
|
||||||
2006-03-02 Pass --enable-sysroot to non-rtems binutils (Required by
|
|
||||||
GCC-4.1 sys-root'ed toolchains).
|
|
||||||
|
|
||||||
2006-02-25 Put this package under the GPL.
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
Copyright (C) 2006 Ralf Corsépius, Ulm, Germany <ralf.corsepius@rtems.org>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
* Improve autotools support:
|
|
||||||
- Problem: The autotools packages conflict with OS provided packages
|
|
||||||
for --prefix=/usr.
|
|
||||||
|
|
||||||
* Improve info files treatment:
|
|
||||||
- Problem: Infos are not target canonicalized. Therefore, installing them to
|
|
||||||
/usr or /usr/local is likely to conflict with vendor provided infos rsp.
|
|
||||||
locally installed packages. Additionally, installing to /usr/local is
|
|
||||||
completely out of our control.
|
|
||||||
- Current approach: Install infos/provide base packages only for
|
|
||||||
$prefix ==/opt/rtems* or if user is forcing them with --enable-infos
|
|
||||||
- Consider to canonicalize the infos (How?). Probably better be done by
|
|
||||||
upstream.
|
|
||||||
|
|
||||||
* Ada:
|
|
||||||
- Consider to remove it (Lack of multilibs renders it unusable for rtems
|
|
||||||
toolchains).
|
|
||||||
- Consider to add support for non-multilib'ed toolchains.
|
|
||||||
|
|
||||||
* gcc/build.add: Use --languages=fortran instead of f95 for gcc >= 4.1
|
|
||||||
(--languages=f95 is deprecated in gcc >= 4.1)
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# RTEMS_CANONICAL_SPLIT(THING)
|
|
||||||
# --------------------------
|
|
||||||
# Generate the variables THING, THING_{alias cpu vendor os}.
|
|
||||||
m4_define([RTEMS_CANONICAL_SPLIT],
|
|
||||||
[case $ac_cv_$1 in
|
|
||||||
*-*-*) ;;
|
|
||||||
*) AC_MSG_ERROR([invalid value of canonical $1]);;
|
|
||||||
esac
|
|
||||||
ac_save_IFS=$IFS; IFS='-'
|
|
||||||
set x $ac_cv_$1
|
|
||||||
shift
|
|
||||||
$1_cpu=$[1]
|
|
||||||
$1_vendor=$[2]
|
|
||||||
shift; shift
|
|
||||||
[# Remember, the first character of IFS is used to create $]*,
|
|
||||||
# except with old shells:
|
|
||||||
$1_os=$[*]
|
|
||||||
IFS=$ac_save_IFS
|
|
||||||
case $$1_os in *\ *) $1_os=`echo "$$1_os" | sed 's/ /-/g'`;; esac
|
|
||||||
])# RTEMS_CANONICAL_SPLIT
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
*.spec
|
|
||||||
*.spec.in
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
include $(top_srcdir)/mkspec.am
|
|
||||||
|
|
||||||
AUTOCONF_VERS = 2.60
|
|
||||||
AUTOCONF_RPMREL = 4
|
|
||||||
include ./autoconf.am
|
|
||||||
|
|
||||||
AUTOMAKE_VERS = 1.10
|
|
||||||
AUTOMAKE_RPMREL = 5
|
|
||||||
include ./automake.am
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
%define rpmvers 2.60
|
|
||||||
%define srcvers 2.60
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
%define name @rpmprefix@autoconf
|
|
||||||
%else
|
|
||||||
%define name autoconf
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
Name: %{name}
|
|
||||||
License: GPL
|
|
||||||
URL: http://www.gnu.org/software/autoconf
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{rpmvers}
|
|
||||||
Release: @AUTOCONF_RPMREL@%{?dist}
|
|
||||||
Summary: Tool for automatically generating GNU style Makefile.in's
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
Obsoletes: @rpmprefix@autoconf-rtems < %{version}-%{release}
|
|
||||||
Provides: @rpmprefix@autoconf-rtems = %{version}-%{release}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRequires: perl m4 gawk emacs
|
|
||||||
Requires: m4 gawk
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Source0: ftp://ftp.gnu.org/gnu/autoconf/autoconf-%{srcvers}.tar.bz2
|
|
||||||
|
|
||||||
%description
|
|
||||||
GNU's Autoconf is a tool for configuring source code and Makefiles.
|
|
||||||
Using Autoconf, programmers can create portable and configurable
|
|
||||||
packages, since the person building the package is allowed to
|
|
||||||
specify various configuration options.
|
|
||||||
You should install Autoconf if you are developing software and you'd
|
|
||||||
like to use it to create shell scripts which will configure your
|
|
||||||
source code packages.
|
|
||||||
Note that the Autoconf package is not required for the end user who
|
|
||||||
may be configuring software with an Autoconf-generated script;
|
|
||||||
Autoconf is only required for the generation of the scripts, not
|
|
||||||
their use.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q -n autoconf-%{srcvers}
|
|
||||||
|
|
||||||
# Work around rpm inserting bogus perl-module deps
|
|
||||||
cat << \EOF > %{name}-prov
|
|
||||||
#!/bin/sh
|
|
||||||
%{__perl_provides} $* |\
|
|
||||||
sed -e '/^perl(Autom4te/d'
|
|
||||||
EOF
|
|
||||||
%define __perl_provides %{_builddir}/autoconf-%{srcvers}/%{name}-prov
|
|
||||||
chmod +x %{__perl_provides}
|
|
||||||
|
|
||||||
cat << \EOF > %{name}-requ
|
|
||||||
#!/bin/sh
|
|
||||||
%{__perl_requires} $* |\
|
|
||||||
sed -e '/^perl(Autom4te/d'
|
|
||||||
EOF
|
|
||||||
%define __perl_requires %{_builddir}/autoconf-%{srcvers}/%{name}-requ
|
|
||||||
chmod +x %{__perl_requires}
|
|
||||||
|
|
||||||
%build
|
|
||||||
./configure --prefix=%{_prefix} --infodir=%{_infodir} --mandir=%{_mandir} \
|
|
||||||
--bindir=%{_bindir} --datadir=%{_datadir}
|
|
||||||
make
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf "${RPM_BUILD_ROOT}"
|
|
||||||
make DESTDIR=${RPM_BUILD_ROOT} install
|
|
||||||
|
|
||||||
# Create this directory to prevent the corresponding line
|
|
||||||
# in %%files below to fail
|
|
||||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/emacs/site-lisp
|
|
||||||
|
|
||||||
# RTEMS's standards.info comes from binutils
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/standards.info*
|
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
touch $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
AUTOCONF_SUBPACKAGES = $(top_srcdir)/common/common.add
|
|
||||||
AUTOCONF_SUBPACKAGES += $(top_srcdir)/autotools/autoconf.add
|
|
||||||
AUTOCONF_SUBPACKAGES += $(top_srcdir)/binutils/rpm-install.add
|
|
||||||
AUTOCONF_SUBPACKAGES += $(top_srcdir)/common/clean.add
|
|
||||||
AUTOCONF_SUBPACKAGES += $(top_srcdir)/autotools/target-autoconf.add
|
|
||||||
|
|
||||||
autoconf.spec.in: $(AUTOCONF_SUBPACKAGES) Makefile.in
|
|
||||||
cat $(AUTOCONF_SUBPACKAGES) | sed \
|
|
||||||
-e "s/[@]AUTOCONF_RPMREL[@]/$(AUTOCONF_RPMREL)/" > $@
|
|
||||||
CLEANFILES += autoconf.spec.in
|
|
||||||
|
|
||||||
|
|
||||||
@rpmprefix@autoconf.spec: autoconf.spec.in
|
|
||||||
$(MKSPEC) autoconf.spec.in | $(SPECSTRIP) > $@
|
|
||||||
CLEANFILES += @rpmprefix@autoconf.spec
|
|
||||||
noinst_DATA += @rpmprefix@autoconf.spec
|
|
||||||
|
|
||||||
EXTRA_DIST += $(AUTOCONF_SUBPACKAGES)
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
%define rpmvers 1.10
|
|
||||||
%define srcvers 1.10
|
|
||||||
%define amvers 1.10
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
%define name @rpmprefix@automake
|
|
||||||
%define requirements @rpmprefix@autoconf >= 2.60
|
|
||||||
%else
|
|
||||||
%define name automake
|
|
||||||
%define requirements autoconf >= 2.60
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: %{name}
|
|
||||||
URL: http://sources.redhat.com/automake
|
|
||||||
License: GPL
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{rpmvers}
|
|
||||||
Release: @AUTOMAKE_RPMREL@%{?dist}
|
|
||||||
Summary: Tool for automatically generating GNU style Makefile.in's
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
Obsoletes: @rpmprefix@automake-rtems < %{version}-%{release}
|
|
||||||
Provides: @rpmprefix@automake-rtems = %{version}-%{release}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRequires: %{requirements} perl help2man
|
|
||||||
Requires: %{requirements}
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun):/sbin/install-info
|
|
||||||
|
|
||||||
Source0: ftp://ftp.gnu.org/gnu/automake/automake-%{srcvers}.tar.bz2
|
|
||||||
|
|
||||||
%description
|
|
||||||
Automake is a tool for automatically generating "Makefile.in"s from
|
|
||||||
files called "Makefile.am". "Makefile.am" is basically a series of
|
|
||||||
"make" macro definitions (with rules being thrown in occasionally).
|
|
||||||
The generated "Makefile.in"s are compatible to the GNU Makefile
|
|
||||||
standards.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q -n automake-%{srcvers}
|
|
||||||
|
|
||||||
# Work around rpm inserting bogus perl-module deps
|
|
||||||
cat << \EOF > %{name}-prov
|
|
||||||
#!/bin/sh
|
|
||||||
%{__perl_provides} $* |\
|
|
||||||
sed -e '/^perl(Automake/d'
|
|
||||||
EOF
|
|
||||||
%define __perl_provides %{_builddir}/automake-%{srcvers}/%{name}-prov
|
|
||||||
chmod +x %{__perl_provides}
|
|
||||||
|
|
||||||
cat << \EOF > %{name}-requ
|
|
||||||
#!/bin/sh
|
|
||||||
%{__perl_requires} $* |\
|
|
||||||
sed -e '/^perl(Automake/d'
|
|
||||||
EOF
|
|
||||||
%define __perl_requires %{_builddir}/automake-%{srcvers}/%{name}-requ
|
|
||||||
chmod +x %{__perl_requires}
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
PATH=%{_bindir}:$PATH
|
|
||||||
# Don't use %%configure, it replaces config.sub/config.guess with the
|
|
||||||
# outdated versions bundled with rpm.
|
|
||||||
./configure --prefix=%{_prefix} --infodir=%{_infodir} --mandir=%{_mandir} \
|
|
||||||
--bindir=%{_bindir} --datadir=%{_datadir} \
|
|
||||||
--docdir=%{_datadir}/automake-%{amvers}/doc
|
|
||||||
make
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf "$RPM_BUILD_ROOT"
|
|
||||||
make DESTDIR=${RPM_BUILD_ROOT} install
|
|
||||||
|
|
||||||
install -m 755 -d $RPM_BUILD_ROOT/%{_mandir}/man1
|
|
||||||
for i in $RPM_BUILD_ROOT%{_bindir}/aclocal \
|
|
||||||
$RPM_BUILD_ROOT%{_bindir}/automake ;
|
|
||||||
do
|
|
||||||
perllibdir=$RPM_BUILD_ROOT/%{_datadir}/automake-%{amvers} \
|
|
||||||
help2man $i > `basename $i`.1
|
|
||||||
install -m 644 `basename $i`.1 $RPM_BUILD_ROOT/%{_mandir}/man1
|
|
||||||
done
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/aclocal
|
|
||||||
echo "/usr/share/aclocal" > $RPM_BUILD_ROOT%{_datadir}/aclocal/dirlist
|
|
||||||
%endif
|
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
touch $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
AUTOMAKE_SUBPACKAGES = $(top_srcdir)/common/common.add
|
|
||||||
AUTOMAKE_SUBPACKAGES += $(top_srcdir)/autotools/automake.add
|
|
||||||
AUTOMAKE_SUBPACKAGES += $(top_srcdir)/binutils/rpm-install.add
|
|
||||||
AUTOMAKE_SUBPACKAGES += $(top_srcdir)/common/clean.add
|
|
||||||
AUTOMAKE_SUBPACKAGES += $(top_srcdir)/autotools/target-automake.add
|
|
||||||
|
|
||||||
automake.spec.in: $(AUTOMAKE_SUBPACKAGES) Makefile.in
|
|
||||||
cat $(AUTOMAKE_SUBPACKAGES) | sed \
|
|
||||||
-e "s/[@]AUTOMAKE_RPMREL[@]/$(AUTOMAKE_RPMREL)/" > $@
|
|
||||||
CLEANFILES += automake.spec.in
|
|
||||||
|
|
||||||
|
|
||||||
@rpmprefix@automake.spec: automake.spec.in
|
|
||||||
$(MKSPEC) automake.spec.in | $(SPECSTRIP) > $@
|
|
||||||
CLEANFILES += @rpmprefix@automake.spec
|
|
||||||
noinst_DATA += @rpmprefix@automake.spec
|
|
||||||
|
|
||||||
EXTRA_DIST += $(AUTOMAKE_SUBPACKAGES)
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
%post
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz ||:
|
|
||||||
|
|
||||||
%preun
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz ||:
|
|
||||||
fi
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
# %doc AUTHORS COPYING ChangeLog NEWS README THANKS
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/*
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
|
|
||||||
%{_infodir}/autoconf.info*
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/*
|
|
||||||
%sysdir %{_datadir}
|
|
||||||
%{_datadir}/autoconf
|
|
||||||
%exclude %{_datadir}/emacs/site-lisp
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
%post
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/automake.info.gz ||:
|
|
||||||
|
|
||||||
%preun
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz ||:
|
|
||||||
fi
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc AUTHORS COPYING ChangeLog NEWS README THANKS
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/aclocal*
|
|
||||||
%{_bindir}/automake*
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/automake.info*.gz
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/*
|
|
||||||
%sysdir %{_datadir}
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
%{_datadir}/aclocal
|
|
||||||
%endif
|
|
||||||
%{_datadir}/aclocal-%{amvers}
|
|
||||||
%{_datadir}/automake-%{amvers}
|
|
||||||
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
*.spec
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
binutils.spec
|
|
||||||
binutils.spec.in
|
|
||||||
mkspec
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@binutils-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@binutils-common
|
|
||||||
Summary: Base package for RTEMS binutils
|
|
||||||
Group: Development/Tools
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-binutils = %{binutils_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-binutils < %{binutils_version}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-binutils = %{binutils_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-binutils < %{binutils_version}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@binutils-common
|
|
||||||
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the base for binutils regardless of target CPU.
|
|
||||||
|
|
||||||
%post -n @rpmprefix@binutils-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/as.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/bfd.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/ld.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/standards.info.gz || :
|
|
||||||
%if "%{binutils_version}" < "2.13"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gasp.info.gz || :
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@binutils-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz || :
|
|
||||||
%if "%{binutils_version}" < "2.13"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gasp.info.gz || :
|
|
||||||
%endif
|
|
||||||
fi
|
|
||||||
|
|
||||||
%files -n @rpmprefix@binutils-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/as.info*
|
|
||||||
%{_infodir}/bfd.info*
|
|
||||||
%{_infodir}/binutils.info*
|
|
||||||
%{_infodir}/ld.info*
|
|
||||||
%{_infodir}/standards.info*
|
|
||||||
|
|
||||||
%if "%{binutils_version}" < "2.13"
|
|
||||||
%{_infodir}/gasp.info*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%sysdir %{_prefix}/share
|
|
||||||
%sysdir %{_prefix}/share/locale
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
%define binutils_pkgvers @BINUTILS_PKGVERS@
|
|
||||||
%define binutils_version @BINUTILS_VERS@
|
|
||||||
%define binutils_rpmvers %{expand:%(echo "@BINUTILS_VERS@" | tr - _ )}
|
|
||||||
|
|
||||||
Name: @rpmprefix@@tool_target@-binutils
|
|
||||||
Summary: Binutils for target @tool_target@
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{binutils_rpmvers}
|
|
||||||
Release: @BINUTILS_RPMREL@%{?dist}
|
|
||||||
License: GPL/LGPL
|
|
||||||
URL: http://sources.redhat.com/binutils
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
# Required for building the infos
|
|
||||||
BuildRequires: /sbin/install-info
|
|
||||||
BuildRequires: texinfo >= 4.2
|
|
||||||
%endif
|
|
||||||
BuildRequires: flex
|
|
||||||
BuildRequires: bison
|
|
||||||
%if %build_infos
|
|
||||||
|
|
||||||
Requires: @rpmprefix@binutils-common
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@SOURCES@
|
|
||||||
|
|
||||||
%description
|
|
||||||
Cross binutils for target @tool_target@
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
%build
|
|
||||||
mkdir -p build
|
|
||||||
cd build
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS" \
|
|
||||||
../binutils-%{binutils_pkgvers}/configure \
|
|
||||||
--build=%_build --host=%_host \
|
|
||||||
--target=@tool_target@ \
|
|
||||||
--verbose --disable-nls \
|
|
||||||
--without-included-gettext \
|
|
||||||
--disable-win32-registry \
|
|
||||||
--disable-werror \
|
|
||||||
--with-sysroot=%{_prefix}/@tool_target@/sys-root \
|
|
||||||
--prefix=%{_prefix} --bindir=%{_bindir} \
|
|
||||||
--includedir=%{_includedir} --libdir=%{_libdir} \
|
|
||||||
--mandir=%{_mandir} --infodir=%{_infodir}
|
|
||||||
|
|
||||||
make all
|
|
||||||
%if %build_infos
|
|
||||||
make info
|
|
||||||
%endif
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
cd build
|
|
||||||
make prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
||||||
bindir=$RPM_BUILD_ROOT%{_bindir} \
|
|
||||||
includedir=$RPM_BUILD_ROOT%{_includedir} \
|
|
||||||
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
||||||
infodir=$RPM_BUILD_ROOT%{_infodir} \
|
|
||||||
mandir=$RPM_BUILD_ROOT%{_mandir} \
|
|
||||||
install
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
make prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
||||||
bindir=$RPM_BUILD_ROOT%{_bindir} \
|
|
||||||
includedir=$RPM_BUILD_ROOT%{_includedir} \
|
|
||||||
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
||||||
infodir=$RPM_BUILD_ROOT%{_infodir} \
|
|
||||||
mandir=$RPM_BUILD_ROOT%{_mandir} \
|
|
||||||
install-info
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
# Dropped in FSF-binutils-2.9.5, but Cygwin still ships it.
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/configure.info*
|
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
touch $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
|
|
||||||
# binutils does not install share/locale, however it uses it
|
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/share/locale
|
|
||||||
%else
|
|
||||||
# Conflict with a native binutils' infos
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# We don't ship host files
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_libdir}/libiberty*
|
|
||||||
|
|
||||||
# manpages without corresponding tools
|
|
||||||
if test ! -f ${RPM_BUILD_ROOT}%{_bindir}/@tool_target@-dlltool%{_exeext}; then
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/@tool_target@-dlltool*
|
|
||||||
fi
|
|
||||||
if test ! -f ${RPM_BUILD_ROOT}%{_bindir}/@tool_target@-nlmconv%{_exeext}; then
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/@tool_target@-nlmconv*
|
|
||||||
fi
|
|
||||||
if test ! -f ${RPM_BUILD_ROOT}%{_bindir}/@tool_target@-windres%{_exeext}; then
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/@tool_target@-windres*
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
%prep
|
|
||||||
%setup -q -c -T -n %{name}-%{version}
|
|
||||||
|
|
||||||
%setup -q -D -T -n %{name}-%{version} -a0
|
|
||||||
cd binutils-%{binutils_pkgvers}
|
|
||||||
%{?PATCH0:%patch0 -p1}
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
# Extract %%__os_install_post into os_install_post~
|
|
||||||
cat << \EOF > os_install_post~
|
|
||||||
%__os_install_post
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Generate customized brp-*scripts
|
|
||||||
cat os_install_post~ | while read a x y; do
|
|
||||||
case $a in
|
|
||||||
# Prevent brp-strip* from trying to handle foreign binaries
|
|
||||||
*/brp-strip*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,find $RPM_BUILD_ROOT,find $RPM_BUILD_ROOT%_bindir $RPM_BUILD_ROOT%_libexecdir,' $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
# Fix up brp-compress to handle %%_prefix != /usr
|
|
||||||
*/brp-compress*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,\./usr/,.%{_prefix}/,g' < $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%endif
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
sed -e 's,^[ ]*/usr/lib/rpm.*/brp-strip,./brp-strip,' \
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
-e 's,^[ ]*/usr/lib/rpm.*/brp-compress,./brp-compress,' \
|
|
||||||
%endif
|
|
||||||
< os_install_post~ > os_install_post
|
|
||||||
%define __os_install_post . ./os_install_post
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# ==============================================================
|
|
||||||
# @tool_target@-binutils
|
|
||||||
# ==============================================================
|
|
||||||
# %package -n @rpmprefix@@tool_target@-binutils
|
|
||||||
# Summary: rtems binutils for @tool_target@
|
|
||||||
# Group: Development/Tools
|
|
||||||
# %if %build_infos
|
|
||||||
# Requires: @rpmprefix@binutils-common
|
|
||||||
# %endif
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-binutils
|
|
||||||
|
|
||||||
GNU binutils targetting @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-binutils
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/@tool_target@-*.1*
|
|
||||||
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/@tool_target@-*
|
|
||||||
|
|
||||||
%dir %{_prefix}/@tool_target@
|
|
||||||
%dir %{_prefix}/@tool_target@/bin
|
|
||||||
%{_prefix}/@tool_target@/bin/*
|
|
||||||
|
|
||||||
%dir %{_prefix}/@tool_target@/lib
|
|
||||||
%{_prefix}/@tool_target@/lib/ldscripts
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
autoreconf -fis
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
#
|
|
||||||
# Please send bugfixes or comments to
|
|
||||||
# http://www.rtems.org/bugzilla
|
|
||||||
#
|
|
||||||
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
%define _prefix @_prefix@
|
|
||||||
%define _infodir %{_prefix}/info
|
|
||||||
%define _mandir %{_prefix}/man
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%ifos cygwin cygwin32 mingw mingw32
|
|
||||||
%define _exeext .exe
|
|
||||||
%else
|
|
||||||
%define _exeext %{nil}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,182 +0,0 @@
|
|||||||
## $Id$
|
|
||||||
|
|
||||||
m4_define([RTEMS_API],[4.7])
|
|
||||||
|
|
||||||
AC_PREREQ(2.59)
|
|
||||||
AC_INIT([crossrpms],[0.20060803.1],[http://www.rtems.org/bugzilla])
|
|
||||||
AC_CONFIG_SRCDIR([binutils/binutils.add])
|
|
||||||
AC_CONFIG_AUX_DIR(.)
|
|
||||||
|
|
||||||
AC_CANONICAL_HOST
|
|
||||||
|
|
||||||
AC_PREFIX_DEFAULT([/opt/rtems-][RTEMS_API])
|
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE([1.9])
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([targets],
|
|
||||||
AS_HELP_STRING([--enable-targets=<targets>],[build for targets <targets>]),
|
|
||||||
[targets="$enable_targets"],
|
|
||||||
[targets=rtems]
|
|
||||||
)
|
|
||||||
|
|
||||||
case $targets in
|
|
||||||
rtems )
|
|
||||||
savdir=`pwd`
|
|
||||||
cd $srcdir
|
|
||||||
targets=
|
|
||||||
for d in rtems*/*/Makefile.am; do
|
|
||||||
o=`echo $d | sed -e 's,/.*,,'`
|
|
||||||
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
|
|
||||||
targets="$targets $a-$o"
|
|
||||||
done
|
|
||||||
cd $savdir
|
|
||||||
;;
|
|
||||||
all )
|
|
||||||
savdir=`pwd`
|
|
||||||
cd $srcdir
|
|
||||||
targets=
|
|
||||||
for d in rtems*/*/Makefile.am; do
|
|
||||||
o=`echo $d | sed -e 's,/.*,,'`
|
|
||||||
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
|
|
||||||
targets="$targets $a-$o"
|
|
||||||
done
|
|
||||||
for d in freebsd*/*/Makefile.am \
|
|
||||||
cygwin*/*/Makefile.am \
|
|
||||||
mingw*/*/Makefile.am; \
|
|
||||||
do
|
|
||||||
o=`echo $d | sed -e 's,/.*,,'`
|
|
||||||
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
|
|
||||||
targets="$targets $a-pc-$o"
|
|
||||||
done
|
|
||||||
for d in solaris*/*/Makefile.am; \
|
|
||||||
do
|
|
||||||
o=`echo $d | sed -e 's,/.*,,'`
|
|
||||||
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
|
|
||||||
targets="$targets $a-sun-$o"
|
|
||||||
done
|
|
||||||
cd $savdir
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case "$prefix" in
|
|
||||||
/usr)
|
|
||||||
sysdirpattern="/%sysdir/d"
|
|
||||||
rpmprefix=
|
|
||||||
host_subdirs=
|
|
||||||
;;
|
|
||||||
/usr/local)
|
|
||||||
sysdirpattern="/%sysdir/d"
|
|
||||||
rpmprefix="local-"
|
|
||||||
host_subdirs=autotools
|
|
||||||
;;
|
|
||||||
/opt/rtems)
|
|
||||||
sysdirpattern="s/^%sysdir/%dir/g"
|
|
||||||
rpmprefix="rtems-"
|
|
||||||
host_subdirs=autotools
|
|
||||||
;;
|
|
||||||
NONE|${ac_default_prefix}) # Default prefix
|
|
||||||
sysdirpattern="s/^%sysdir/%dir/g"
|
|
||||||
rpmprefix="[rtems-]RTEMS_API[-]"
|
|
||||||
host_subdirs=autotools
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
sysdirpattern="s/^%sysdir/%dir/g"
|
|
||||||
rpmprefix="custom-"
|
|
||||||
host_subdirs=autotools
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
AC_SUBST(sysdirpattern)
|
|
||||||
AC_SUBST(HOST_SUBDIRS,$host_subdirs)
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([rpmprefix],
|
|
||||||
[ --enable-rpmprefix=<rpmprefix> prefix rpms],[
|
|
||||||
case "$enable_rpmprefix" in
|
|
||||||
yes) # ignore, use default
|
|
||||||
;;
|
|
||||||
no) rpmprefix=
|
|
||||||
;;
|
|
||||||
*) # presume user knows what he is doing
|
|
||||||
rpmprefix=$enable_rpmprefix;;
|
|
||||||
esac
|
|
||||||
])
|
|
||||||
AC_SUBST(rpmprefix)
|
|
||||||
|
|
||||||
SPECSTRIP_OPTS=
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([infos],
|
|
||||||
[ --enable-infos enable building infos],[
|
|
||||||
case "$enable_infos" in
|
|
||||||
yes)
|
|
||||||
SPECSTRIP_OPTS="$SPECSTRIP_OPTS --enable-infos";;
|
|
||||||
no)
|
|
||||||
SPECSTRIP_OPTS="$SPECSTRIP_OPTS --disable-infos";;
|
|
||||||
*)
|
|
||||||
AC_MSG_ERROR([Invalid argument to --enable-infos])
|
|
||||||
esac
|
|
||||||
])
|
|
||||||
AC_SUBST(SPECSTRIP_OPTS)
|
|
||||||
|
|
||||||
AS_IF([test "${host}" != "${build}"],[
|
|
||||||
AC_MSG_CHECKING(for RPM OS)
|
|
||||||
case "$host" in
|
|
||||||
i?86-*cygwin*) RPM_OS=cygwin ;;
|
|
||||||
i?86-*mingw*) RPM_OS=mingw32 ;;
|
|
||||||
sparc-*solaris*) RPM_OS=solaris2.7 ;;
|
|
||||||
i?86-*freebsd5*) RPM_OS=freebsd5.2 ;;
|
|
||||||
i?86-*freebsd6.0) RPM_OS=freebsd6.0 ;;
|
|
||||||
i?86-*freebsd6.1) RPM_OS=freebsd6.1 ;;
|
|
||||||
*)
|
|
||||||
AC_MSG_ERROR([Unsupported host ${host}])
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
AC_MSG_RESULT($RPM_OS)
|
|
||||||
])
|
|
||||||
AC_SUBST(RPM_OS)
|
|
||||||
|
|
||||||
for f in $targets; do
|
|
||||||
ac_cv_mytarget=`$SHELL "$ac_aux_dir/config.sub" $f` ||
|
|
||||||
AC_MSG_ERROR([$SHELL $ac_aux_dir/config.sub $f failed])
|
|
||||||
RTEMS_CANONICAL_SPLIT(mytarget)
|
|
||||||
|
|
||||||
AS_IF([test -d $srcdir/$mytarget_os/$mytarget_cpu],[
|
|
||||||
target_subdirs="$target_subdirs $mytarget_os/$mytarget_cpu"],[
|
|
||||||
AC_MSG_WARN([ignoring unsupported target $f])
|
|
||||||
])
|
|
||||||
done
|
|
||||||
AC_SUBST(TARGET_SUBDIRS,$target_subdirs)
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([cygwin/Makefile])
|
|
||||||
AC_CONFIG_FILES([cygwin/i686/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([mingw32/Makefile])
|
|
||||||
AC_CONFIG_FILES([mingw32/i686/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([solaris2.7/Makefile])
|
|
||||||
AC_CONFIG_FILES([solaris2.7/sparc/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([freebsd5.2/Makefile])
|
|
||||||
AC_CONFIG_FILES([freebsd5.2/i586/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([freebsd6.0/Makefile])
|
|
||||||
AC_CONFIG_FILES([freebsd6.0/i586/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([freebsd6.1/Makefile])
|
|
||||||
AC_CONFIG_FILES([freebsd6.1/i586/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([rtems4.7/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/arm/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/avr/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/h8300/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/i386/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/m68k/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/mips/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/mipstx39/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/powerpc/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/sh/Makefile])
|
|
||||||
AC_CONFIG_FILES([rtems4.7/sparc/Makefile])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([autotools/Makefile])
|
|
||||||
|
|
||||||
AC_OUTPUT
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
%if %build_g77
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@gcc-g77-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gcc-g77-common
|
|
||||||
Summary: Base package for RTEMS gcc/g77 compiler
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-g77 = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-g77 < %{gcc_rpmvers}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-g77 = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-g77 < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gcc-g77-common
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the files for gcc/g77 that are shared by all targets.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gcc-g77-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/g77.info*.gz
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gcc-g77-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/g77.info.gz || :
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gcc-g77-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/g77.info.gz || :
|
|
||||||
fi
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@rtems4.7-base-gcc
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gcc-common
|
|
||||||
Summary: Base package for rtems gcc and newlib C Library
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-gcc = %{gcc_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-gcc < %{gcc_rpmvers}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-gcc = %{gcc_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-gcc < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gcc-common
|
|
||||||
|
|
||||||
GCC files that are shared by all targets.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gcc-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/cpp.info*
|
|
||||||
%{_infodir}/cppinternals.info*
|
|
||||||
%{_infodir}/gcc.info*
|
|
||||||
%{_infodir}/gccint.info*
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
%{_infodir}/gccinstall.info*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%if "%{gcc_version}" < "3.4"
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/cpp.1*
|
|
||||||
%{_mandir}/man1/gcov.1*
|
|
||||||
%endif
|
|
||||||
%sysdir %{_mandir}/man7
|
|
||||||
%{_mandir}/man7/fsf-funding.7*
|
|
||||||
%{_mandir}/man7/gfdl.7*
|
|
||||||
%{_mandir}/man7/gpl.7*
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gcc-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/cpp.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/cppinternals.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gcc.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gccint.info.gz || :
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gccinstall.info.gz || :
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gcc-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/cpp.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/cppinternals.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gcc.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gccint.info.gz || :
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gccinstall.info.gz || :
|
|
||||||
%endif
|
|
||||||
fi
|
|
||||||
|
|
||||||
%endif
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
%if %build_gcj
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@gcc-gcj-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gcc-gcj-common
|
|
||||||
Summary: Base package for rtems gcc/java compiler (gcj)
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-gcj = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-gcj < %{gcc_rpmvers}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-gcj = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-gcj < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gcc-gcj-common
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the files for gcc/java (gcj) that are shared by all targets.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gcc-gcj-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%if "%{gcc_version}" <= "3.4"
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/jar%{_exeext}
|
|
||||||
%{_bindir}/grepjar%{_exeext}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/gcj.info*
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
%{_infodir}/fastjar.info*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" < "4.0"
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/gcjh.1*
|
|
||||||
%{_mandir}/man1/jv-scan.1*
|
|
||||||
%{_mandir}/man1/jcf-dump.1*
|
|
||||||
%{_mandir}/man1/gij.1*
|
|
||||||
%{_mandir}/man1/jv-convert.1*
|
|
||||||
%{_mandir}/man1/rmic.1*
|
|
||||||
%{_mandir}/man1/rmiregistry.1*
|
|
||||||
%{_mandir}/man1/jar.1*
|
|
||||||
%{_mandir}/man1/grepjar.1*
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gcc-gcj-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gcj.info* || :
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/fastjar.info* || :
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gcc-gcj-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gcj.info* || :
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/fastjar.info* || :
|
|
||||||
%endif
|
|
||||||
fi
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
%if %build_f95
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@gcc-gfortran-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gcc-gfortran-common
|
|
||||||
Summary: Base package for RTEMS gcc/gfortran compiler
|
|
||||||
Group: Development/Tools
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-gfortran = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-gfortran < %{gcc_rpmvers}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-gfortran = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-gfortran < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gcc-gfortran-common
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the files for gcc/gfortran that are shared by all targets.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gcc-gfortran-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/gfortran.info*.gz
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gcc-gfortran-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gfortran.info.gz || :
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gcc-gfortran-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gfortran.info.gz || :
|
|
||||||
fi
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
%if %build_gnat
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@gcc-gnat-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gcc-gnat-common
|
|
||||||
Summary: Base package for RTEMS gcc/gnat compiler
|
|
||||||
Group: Development/Tools
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-gnat = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-gnat < %{gcc_rpmvers}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-gnat = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-gnat < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gcc-gnat-common
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the gcc/gnat tools for the gcc/gnat compiler
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gcc-gnat-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/vxaddr2line%{_exeext}
|
|
||||||
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/gnat*
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gcc-gnat-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz || :
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gcc-gnat-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz || :
|
|
||||||
fi
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
%if %build_newlib
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@newlib-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@newlib-common
|
|
||||||
Summary: Base package for RTEMS newlib C Library
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{newlib_version}
|
|
||||||
License: Distributable
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-newlib = %{newlib_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-newlib < %{newlib_version}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-newlib = %{newlib_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-newlib < %{newlib_version}-%{release}
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-libc = %{newlib_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-libc < %{newlib_version}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-libc = %{newlib_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-libc < %{newlib_version}-%{release}
|
|
||||||
|
|
||||||
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
%description -n @rpmprefix@newlib-common
|
|
||||||
newlib files that are shared by all targets.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@newlib-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/libc.info*
|
|
||||||
%{_infodir}/libm.info*
|
|
||||||
|
|
||||||
%post -n @rpmprefix@newlib-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/libc.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/libm.info.gz || :
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@newlib-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/libc.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/libm.info.gz || :
|
|
||||||
fi
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
%build
|
|
||||||
mkdir -p build
|
|
||||||
|
|
||||||
cd build
|
|
||||||
|
|
||||||
languages="c"
|
|
||||||
%if %build_cxx
|
|
||||||
languages="$languages,c++"
|
|
||||||
%endif
|
|
||||||
%if %build_g77
|
|
||||||
languages="$languages,g77"
|
|
||||||
%endif
|
|
||||||
%if %build_f95
|
|
||||||
languages="$languages,f95"
|
|
||||||
%endif
|
|
||||||
%if %build_gcj
|
|
||||||
languages="$languages,java"
|
|
||||||
%endif
|
|
||||||
%if %build_objc
|
|
||||||
languages="$languages,objc"
|
|
||||||
%endif
|
|
||||||
%if %build_gnat
|
|
||||||
languages="$languages,ada"
|
|
||||||
%endif
|
|
||||||
%if %build_libgcj
|
|
||||||
optargs="--enable-libgcj"
|
|
||||||
%endif
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
export PATH="%{_bindir}:${PATH}"
|
|
||||||
%endif
|
|
||||||
|
|
||||||
CC="%{__cc} ${RPM_OPT_FLAGS}" \
|
|
||||||
../gcc-%{gcc_pkgvers}/configure \
|
|
||||||
--prefix=%{_prefix} \
|
|
||||||
--bindir=%{_bindir} \
|
|
||||||
--includedir=%{_includedir} \
|
|
||||||
--libdir=%{_libdir} \
|
|
||||||
--mandir=%{_mandir} \
|
|
||||||
--infodir=%{_infodir} \
|
|
||||||
--datadir=%{_datadir} \
|
|
||||||
--build=%_build --host=%_host \
|
|
||||||
--target=@tool_target@ \
|
|
||||||
--with-gnu-as --with-gnu-ld --verbose \
|
|
||||||
--with-newlib \
|
|
||||||
--with-system-zlib \
|
|
||||||
--disable-nls --without-included-gettext \
|
|
||||||
--disable-win32-registry \
|
|
||||||
--enable-version-specific-runtime-libs \
|
|
||||||
--enable-threads \
|
|
||||||
--with-sysroot=%{_prefix}/@tool_target@/sys-root \
|
|
||||||
--enable-languages="$languages" $optargs
|
|
||||||
|
|
||||||
%if "%_host" != "%_build"
|
|
||||||
# Bug in gcc-3.2.1:
|
|
||||||
# Somehow, gcc doesn't get syslimits.h right for Cdn-Xs
|
|
||||||
mkdir -p gcc/include
|
|
||||||
cp ../gcc-%{gcc_pkgvers}/gcc/gsyslimits.h gcc/include/syslimits.h
|
|
||||||
%endif
|
|
||||||
|
|
||||||
make all
|
|
||||||
%if %build_infos
|
|
||||||
make info
|
|
||||||
%endif
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
|
|
||||||
%define gcc_pkgvers @GCC_PKGVERS@
|
|
||||||
%define gcc_version @GCC_VERS@
|
|
||||||
%define gcc_rpmvers %{expand:%(echo "@GCC_VERS@" | tr - _ )}
|
|
||||||
|
|
||||||
%if %build_newlib
|
|
||||||
%define newlib_version @NEWLIB_VERS@
|
|
||||||
%define gccnewlib_version gcc%{gcc_version}newlib%{newlib_version}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: @rpmprefix@@tool_target@-gcc
|
|
||||||
Summary: @tool_target@ gcc
|
|
||||||
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
Release: @GCC_RPMREL@%{?dist}
|
|
||||||
License: GPL
|
|
||||||
URL: http://gcc.gnu.org
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
%define _use_internal_dependency_generator 0
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "4.2.0"
|
|
||||||
BuildRequires: flex bison
|
|
||||||
%endif
|
|
||||||
%if %build_gcj
|
|
||||||
# Building gcj requires bison and zlib
|
|
||||||
BuildRequires: bison
|
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRequires: texinfo >= 4.2
|
|
||||||
BuildRequires: @rpmprefix@@tool_target@-binutils
|
|
||||||
BuildRequires: @rpmprefix@@tool_target@-sys-root
|
|
||||||
BuildRequires: @rpmprefix@@tool_target@-w32api-sys-root
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@gcc-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-binutils
|
|
||||||
Requires: @rpmprefix@@tool_target@-sys-root
|
|
||||||
Requires: @rpmprefix@@tool_target@-w32api-sys-root
|
|
||||||
%if %build_newlib
|
|
||||||
Requires: @rpmprefix@@tool_target@-newlib = %{newlib_version}-%{release}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_gcj
|
|
||||||
BuildRequires: zlib-devel
|
|
||||||
%endif
|
|
||||||
%if %build_gnat
|
|
||||||
# Building gnat requires gnat
|
|
||||||
# This really isn't available until RedHat 8.0. How to conditionalize this?
|
|
||||||
BuildRequires: gcc-gnat
|
|
||||||
BuildRequires: @rpmprefix@@tool_target@-newlib < %{newlib_version}-%{release}
|
|
||||||
%endif
|
|
||||||
%if %build_f95
|
|
||||||
BuildRequires: gmp-devel
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
%define gcclib %{_libdir}/gcc
|
|
||||||
%define gccexec %{_libexecdir}/gcc
|
|
||||||
%else
|
|
||||||
%define gcclib %{_libdir}/gcc-lib
|
|
||||||
%define gccexec %{_libdir}/gcc-lib
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@SOURCES@
|
|
||||||
|
|
||||||
%description
|
|
||||||
Cross gcc for @tool_target@.
|
|
||||||
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
%install
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
export PATH="%{_bindir}:${PATH}"
|
|
||||||
%endif
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
cd build
|
|
||||||
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
%if %build_newlib
|
|
||||||
cd build/@tool_target@/newlib
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install-info
|
|
||||||
cd ../../..
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" <= "4.1.1"
|
|
||||||
# Misplaced header file
|
|
||||||
if test -f $RPM_BUILD_ROOT%{_includedir}/mf-runtime.h; then
|
|
||||||
mv $RPM_BUILD_ROOT%{_includedir}/mf-runtime.h \
|
|
||||||
$RPM_BUILD_ROOT%{gcclib}/@tool_target@/%{gcc_version}/include/
|
|
||||||
fi
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# host library
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_prefix}/lib/libiberty.a
|
|
||||||
|
|
||||||
# We use the version from binutils
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_bindir}/@tool_target@-c++filt%{_exeext}
|
|
||||||
|
|
||||||
%if %build_gnat
|
|
||||||
# Seemingly a VAX tool. Not meaningful, here.
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_bindir}/vxaddr2line%{_exeext}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
# We don't ship info/dir
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
touch $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
%else
|
|
||||||
# Conflict with a native GCC's infos
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}
|
|
||||||
|
|
||||||
# Conflict with a native GCC's man pages
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_mandir}/man7
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_f95
|
|
||||||
# # Bug in gcc-4.0.0pre
|
|
||||||
# mv $RPM_BUILD_ROOT%{_bindir}/gfortran $RPM_BUILD_ROOT%{_bindir}/@tool_target@-gfortran
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
# Bug in gcc-3.4.0pre
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_bindir}/@tool_target@-@tool_target@-gcjh%{_exeext}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
# Bug in gcc-3.3.x/gcc-3.4.x: Despite we don't need fixincludes, it installs
|
|
||||||
# the fixinclude-install-tools
|
|
||||||
rm -rf ${RPM_BUILD_ROOT}%{gcclib}/@tool_target@/%{gcc_version}/install-tools
|
|
||||||
rm -rf ${RPM_BUILD_ROOT}%{gccexec}/@tool_target@/%{gcc_version}/install-tools
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# Collect multilib subdirectories
|
|
||||||
f=`build/gcc/xgcc -Bbuild/gcc/ --print-multi-lib | sed -e 's,;.*$,,'`
|
|
||||||
|
|
||||||
%if %build_newlib
|
|
||||||
echo "%defattr(-,root,root,-)" > build/files.newlib
|
|
||||||
TGTDIR="%{_prefix}/@tool_target@/lib"
|
|
||||||
for i in $f; do
|
|
||||||
case $i in
|
|
||||||
\.) echo "%dir ${TGTDIR}" >> build/files.newlib
|
|
||||||
;;
|
|
||||||
*) echo "%dir ${TGTDIR}/$i" >> build/files.newlib
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
%endif
|
|
||||||
|
|
||||||
rm -f dirs ;
|
|
||||||
echo "%defattr(-,root,root,-)" >> dirs
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
echo "%dir %{_prefix}" >> dirs
|
|
||||||
echo "%dir %{_libdir}" >> dirs
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
echo "%dir %{_libexecdir}" >> dirs
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
echo "%dir %{gcclib}" >> dirs
|
|
||||||
echo "%dir %{gcclib}/@tool_target@" >> dirs
|
|
||||||
|
|
||||||
TGTDIR="%{gcclib}/@tool_target@/%{gcc_version}"
|
|
||||||
for i in $f; do
|
|
||||||
case $i in
|
|
||||||
\.) echo "%dir ${TGTDIR}" >> dirs
|
|
||||||
;;
|
|
||||||
*) echo "%dir ${TGTDIR}/$i" >> dirs
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# Collect files to go into different packages
|
|
||||||
cp dirs build/files.gcc
|
|
||||||
cp dirs build/files.g77
|
|
||||||
cp dirs build/files.gfortran
|
|
||||||
cp dirs build/files.objc
|
|
||||||
cp dirs build/files.gcj
|
|
||||||
cp dirs build/files.g++
|
|
||||||
|
|
||||||
TGTDIR="%{gcclib}/@tool_target@/%{gcc_version}"
|
|
||||||
f=`find ${RPM_BUILD_ROOT}${TGTDIR} ! -type d -print | sed -e "s,^$RPM_BUILD_ROOT,,g"`;
|
|
||||||
for i in $f; do
|
|
||||||
case $i in
|
|
||||||
*lib*.la) rm ${RPM_BUILD_ROOT}/$i ;; # ignore: gcc produces bogus libtool libs
|
|
||||||
*f771) ;;
|
|
||||||
*f951) ;;
|
|
||||||
*cc1) ;;
|
|
||||||
*cc1obj) ;;
|
|
||||||
*cc1plus) ;; # ignore: explicitly put into rpm elsewhere
|
|
||||||
*collect2) ;;
|
|
||||||
*libobjc*) echo "$i" >> build/files.objc ;;
|
|
||||||
*include/objc*) ;;
|
|
||||||
*include/g++*);;
|
|
||||||
*include/c++*);;
|
|
||||||
*adainclude*);;
|
|
||||||
*adalib*);;
|
|
||||||
*gnat1);;
|
|
||||||
*jc1) ;;
|
|
||||||
*jvgenmain) ;;
|
|
||||||
*/libgfortran*.*) echo "$i" >> build/files.gfortran ;;
|
|
||||||
*/libstdc++.*) echo "$i" >> build/files.g++ ;;
|
|
||||||
*/libsupc++.*) echo "$i" >> build/files.g++ ;;
|
|
||||||
*) echo "$i" >> build/files.gcc ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
TGTDIR="%{_prefix}/@tool_target@/lib"
|
|
||||||
f=`find ${RPM_BUILD_ROOT}${TGTDIR} ! -type d -print | sed -e "s,^$RPM_BUILD_ROOT,,g"`;
|
|
||||||
for i in $f; do
|
|
||||||
case $i in
|
|
||||||
*lib*.la) rm ${RPM_BUILD_ROOT}/$i;; # ignore - gcc produces bogus libtool libs
|
|
||||||
*libiberty.a) rm ${RPM_BUILD_ROOT}/$i ;; # ignore - GPL'ed
|
|
||||||
# all other files belong to newlib
|
|
||||||
*) echo "$i" >> build/files.newlib ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
%prep
|
|
||||||
%setup -c -T -n %{name}-%{version}
|
|
||||||
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a0
|
|
||||||
%{?PATCH0:%patch0 -p0}
|
|
||||||
|
|
||||||
%if %build_cxx
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a1
|
|
||||||
%{?PATCH1:%patch1 -p0}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_f95
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a2
|
|
||||||
%{?PATCH2:%patch2 -p0}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_gcj
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a3
|
|
||||||
%{?PATCH3:%patch3 -p0}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_gnat
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a4
|
|
||||||
%{?PATCH4:%patch4 -p0}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_objc
|
|
||||||
%setup -T -D -n %{name}-%{version} -a5
|
|
||||||
%{?PATCH5:%patch5 -p0}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_newlib
|
|
||||||
%setup -q -T -D -n %{name}-%{version} -a50
|
|
||||||
cd newlib-%{newlib_version}
|
|
||||||
%{?PATCH50:%patch50 -p1}
|
|
||||||
cd ..
|
|
||||||
# Copy the C library into gcc's source tree
|
|
||||||
ln -s ../newlib-%{newlib_version}/newlib gcc-%{gcc_pkgvers}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@PREP@
|
|
||||||
|
|
||||||
# Fix timestamps
|
|
||||||
cd gcc-%{gcc_pkgvers}
|
|
||||||
contrib/gcc_update --touch
|
|
||||||
cd ..
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
# Extract %%__os_install_post into os_install_post~
|
|
||||||
cat << \EOF > os_install_post~
|
|
||||||
%__os_install_post
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Generate customized brp-*scripts
|
|
||||||
cat os_install_post~ | while read a x y; do
|
|
||||||
case $a in
|
|
||||||
# Prevent brp-strip* from trying to handle foreign binaries
|
|
||||||
*/brp-strip*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,find $RPM_BUILD_ROOT,find $RPM_BUILD_ROOT%_bindir $RPM_BUILD_ROOT%_libexecdir,' $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
# Fix up brp-compress to handle %%_prefix != /usr
|
|
||||||
*/brp-compress*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,\./usr/,.%{_prefix}/,g' < $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%endif
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
sed -e 's,^[ ]*/usr/lib/rpm.*/brp-strip,./brp-strip,' \
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
-e 's,^[ ]*/usr/lib/rpm.*/brp-compress,./brp-compress,' \
|
|
||||||
%endif
|
|
||||||
< os_install_post~ > os_install_post
|
|
||||||
%define __os_install_post . ./os_install_post
|
|
||||||
|
|
||||||
|
|
||||||
cat << EOF > %{_builddir}/%{name}-%{gcc_rpmvers}/find-provides
|
|
||||||
#!/bin/sh
|
|
||||||
grep -E -v '^${RPM_BUILD_ROOT}%{_prefix}/@tool_target@/(lib|include|sys-root)' \
|
|
||||||
| grep -v '^${RPM_BUILD_ROOT}%{gcclib}/@tool_target@/' | %__find_provides
|
|
||||||
EOF
|
|
||||||
chmod +x %{_builddir}/%{name}-%{gcc_rpmvers}/find-provides
|
|
||||||
%define __find_provides %{_builddir}/%{name}-%{gcc_rpmvers}/find-provides
|
|
||||||
|
|
||||||
cat << EOF > %{_builddir}/%{name}-%{gcc_rpmvers}/find-requires
|
|
||||||
#!/bin/sh
|
|
||||||
grep -E -v '^${RPM_BUILD_ROOT}%{_prefix}/@tool_target@/(lib|include|sys-root)' \
|
|
||||||
| grep -v '^${RPM_BUILD_ROOT}%{gcclib}/@tool_target@/' | %__find_requires
|
|
||||||
EOF
|
|
||||||
chmod +x %{_builddir}/%{name}-%{gcc_rpmvers}/find-requires
|
|
||||||
%define __find_requires %{_builddir}/%{name}-%{gcc_rpmvers}/find-requires
|
|
||||||
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
%if %build_cxx
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcc-c++
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcc-c++
|
|
||||||
Summary: GCC c++ compiler for @tool_target@
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Provides: @rpmprefix@@tool_target@-c++ = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-c++ < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@gcc-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc-c++
|
|
||||||
GCC c++ compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc-c++ -f build/files.g++
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_mandir}/man1/@tool_target@-g++.1*
|
|
||||||
|
|
||||||
%{_bindir}/@tool_target@-c++%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-g++%{_exeext}
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/cc1plus%{_exeext}
|
|
||||||
|
|
||||||
%dir %{gcclib}/@tool_target@/%{gcc_version}/include
|
|
||||||
%if "%{gcc_version}" >= "3.2"
|
|
||||||
%{gcclib}/@tool_target@/%{gcc_version}/include/c++
|
|
||||||
%else
|
|
||||||
%{gcclib}/@tool_target@/%{gcc_version}/include/g++
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
%if %build_g77
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcc-g77
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcc-g77
|
|
||||||
Summary: Fortran 77 support for @tool_target@-gcc
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
Provides: @rpmprefix@@tool_target@-g77 = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-g77 < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@gcc-g77-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc-g77
|
|
||||||
GCC Fortran 77 compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc-g77 -f build/files.g77
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_bindir}/@tool_target@-g77%{_exeext}
|
|
||||||
|
|
||||||
%{_mandir}/man1/@tool_target@-g77.1*
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/f771%{_exeext}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcc
|
|
||||||
# ==============================================================
|
|
||||||
# %package -n @rpmprefix@@tool_target@-gcc
|
|
||||||
# Summary: GNU cc compiler for @tool_target@
|
|
||||||
# Group: Development/Tools
|
|
||||||
# Version: %{gcc_rpmvers}
|
|
||||||
# Requires: @rpmprefix@@tool_target@-binutils
|
|
||||||
# Requires: @rpmprefix@@tool_target@-newlib = %{newlib_version}-%{release}
|
|
||||||
# License: GPL
|
|
||||||
|
|
||||||
# %if %build_infos
|
|
||||||
# Requires: @rpmprefix@gcc-common
|
|
||||||
# %endif
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc
|
|
||||||
GNU cc compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc -f build/files.gcc
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/@tool_target@-gcc.1*
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
%{_mandir}/man1/@tool_target@-cpp.1*
|
|
||||||
%{_mandir}/man1/@tool_target@-gcov.1*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/@tool_target@-cpp%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-gcc%{_exeext}
|
|
||||||
%if "%{gcc_version}" >= "3.3"
|
|
||||||
%{_bindir}/@tool_target@-gcc-%{gcc_version}%{_exeext}
|
|
||||||
%endif
|
|
||||||
%{_bindir}/@tool_target@-gcov%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-gccbug
|
|
||||||
|
|
||||||
%dir %{gcclib}/@tool_target@/%{gcc_version}/include
|
|
||||||
%if "%{gcc_version}" > "4.0.3"
|
|
||||||
%if "@tool_target@" != "bfin-rtems4.7"
|
|
||||||
%dir %{gcclib}/@tool_target@/%{gcc_version}/include/ssp
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/cc1%{_exeext}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/collect2%{_exeext}
|
|
||||||
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
%if %build_gcj
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcj
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcj
|
|
||||||
Summary: Java support (gcj) for @tool_target@-gcc
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
Provides: @rpmprefix@@tool_target@-gcc-gcj = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@gcc-gcj-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcj
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the gcc/java compiler for @tool_target@
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcj -f build/files.gcj
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_bindir}/@tool_target@-gcj%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-jcf-dump%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-jv-scan%{_exeext}
|
|
||||||
%{_bindir}/@tool_target@-gcjh%{_exeext}
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
%{_bindir}/@tool_target@-*jar%{_exeext}
|
|
||||||
|
|
||||||
%{_mandir}/man1/@tool_target@-*jar.1*
|
|
||||||
%{_mandir}/man1/@tool_target@-gcj*.1*
|
|
||||||
%{_mandir}/man1/@tool_target@-jv-*.1*
|
|
||||||
%{_mandir}/man1/@tool_target@-jcf-dump.1*
|
|
||||||
%{_mandir}/man1/@tool_target@-gij.1*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{gcc_version}" >= "4.0"
|
|
||||||
%{_mandir}/man1/@tool_target@-grmi*.1*
|
|
||||||
%else
|
|
||||||
%if "%{gcc_version}" >= "3.4"
|
|
||||||
%{_mandir}/man1/@tool_target@-rmi*.1*
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/jc1%{_exeext}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/jvgenmain%{_exeext}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
%if %build_f95
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcc-gfortran
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcc-gfortran
|
|
||||||
Summary: Fortran 95 support for @tool_target@-gcc
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Provides: @rpmprefix@@tool_target@-gfortran = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-gfortran < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@gcc-gfortran-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-g77 < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc-gfortran
|
|
||||||
GCC fortran compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc-gfortran -f build/files.gfortran
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_bindir}/@tool_target@-gfortran%{_exeext}
|
|
||||||
|
|
||||||
%{_mandir}/man1/@tool_target@-gfortran.1*
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/f951%{_exeext}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
%if %build_gnat
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gnat
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcc-gnat
|
|
||||||
Summary: Ada support for for @tool_target@-gcc
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
Provides: @rpmprefix@@tool_target@-gcc-gnat = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%if %_build_infos
|
|
||||||
Requires: @rpmprefix@gcc-gnat-common
|
|
||||||
%endif
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc-gnat
|
|
||||||
RTEMS is an open source operating system for embedded systems.
|
|
||||||
|
|
||||||
This is the gcc/gnat compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc-gnat
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_bindir}/@tool_target@-gnat*
|
|
||||||
%{_bindir}/@tool_target@-gprmake%{_exeext}
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/gnat1%{_exeext}
|
|
||||||
|
|
||||||
%{gcclib}/@tool_target@/%{gcc_version}/adalib
|
|
||||||
%{gcclib}/@tool_target@/%{gcc_version}/adainclude
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
%if %build_newlib
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-newlib
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-newlib
|
|
||||||
Summary: C Library (newlib) for @tool_target@
|
|
||||||
Group: Development/Tools
|
|
||||||
License: Distributable
|
|
||||||
Version: %{newlib_version}
|
|
||||||
|
|
||||||
Provides: @rpmprefix@@tool_target@-libc = %{newlib_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-libc < %{newlib_version}-%{release}
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
Requires: @rpmprefix@newlib-common
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-newlib
|
|
||||||
Newlib C Library for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-newlib -f build/files.newlib
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_prefix}
|
|
||||||
%dir %{_prefix}/@tool_target@
|
|
||||||
%{_prefix}/@tool_target@/include
|
|
||||||
|
|
||||||
%endif
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
%if %build_objc
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@@tool_target@-gcc-objc
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@@tool_target@-gcc-objc
|
|
||||||
Summary: Objective C support for @tool_target@-gcc
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gcc_rpmvers}
|
|
||||||
License: GPL
|
|
||||||
Provides: @rpmprefix@@tool_target@-objc = %{gcc_rpmvers}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@@tool_target@-objc < %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
Requires: @rpmprefix@@tool_target@-gcc = %{gcc_rpmvers}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gcc-objc
|
|
||||||
GCC objc compiler for @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gcc-objc -f build/files.objc
|
|
||||||
%defattr(-,root,root)
|
|
||||||
|
|
||||||
%dir %{gccexec}
|
|
||||||
%dir %{gccexec}/@tool_target@
|
|
||||||
%dir %{gccexec}/@tool_target@/%{gcc_version}
|
|
||||||
%{gccexec}/@tool_target@/%{gcc_version}/cc1obj%{_exeext}
|
|
||||||
|
|
||||||
%{gcclib}/@tool_target@/%{gcc_version}/include/objc
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
%if %build_infos
|
|
||||||
# ==============================================================
|
|
||||||
# @rpmprefix@gdb-common
|
|
||||||
# ==============================================================
|
|
||||||
%package -n @rpmprefix@gdb-common
|
|
||||||
Summary: Base package for RTEMS gdbs
|
|
||||||
Group: Development/Tools
|
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
|
|
||||||
Provides: @rpmprefix@rtems4.7-base-gdb = %{gdb_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems4.7-base-gdb < %{gdb_version}-%{release}
|
|
||||||
Provides: @rpmprefix@rtems-base-gdb = %{gdb_version}-%{release}
|
|
||||||
Obsoletes: @rpmprefix@rtems-base-gdb < %{gdb_version}-%{release}
|
|
||||||
|
|
||||||
%description -n @rpmprefix@gdb-common
|
|
||||||
|
|
||||||
GDB files shared by all targets.
|
|
||||||
|
|
||||||
%post -n @rpmprefix@gdb-common
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gdb.info.gz || :
|
|
||||||
%if "%{gdb_version}" < "6.3"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/mmalloc.info.gz || :
|
|
||||||
%endif
|
|
||||||
%if "%{gdb_version}" >= "5.0"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/gdbint.info.gz || :
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/stabs.info.gz || :
|
|
||||||
%endif
|
|
||||||
%if "{gdb_version}" >= "6.0"
|
|
||||||
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/annotate.info.gz || :
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%preun -n @rpmprefix@gdb-common
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gdb.info.gz || :
|
|
||||||
%if "%{gdb_version}" < "6.3"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/mmalloc.info.gz || :
|
|
||||||
%endif
|
|
||||||
%if "%{gdb_version}" >= "5.0"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gdbint.info.gz || :
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/stabs.info.gz || :
|
|
||||||
%endif
|
|
||||||
%if "{gdb_version}" >= "6.0"
|
|
||||||
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/annotate.info.gz || :
|
|
||||||
%endif
|
|
||||||
fi
|
|
||||||
|
|
||||||
%files -n @rpmprefix@gdb-common
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_infodir}
|
|
||||||
%ghost %{_infodir}/dir
|
|
||||||
%{_infodir}/gdb.info*
|
|
||||||
|
|
||||||
# FIXME: When had mmalloc.info been removed?
|
|
||||||
%if "%{gdb_version}" < "6.3"
|
|
||||||
%{_infodir}/mmalloc.info*
|
|
||||||
%endif
|
|
||||||
# FIXME: When had gdbint and stabs been introduced?
|
|
||||||
%if "%{gdb_version}" >= "5.0"
|
|
||||||
%{_infodir}/gdbint.info*
|
|
||||||
%{_infodir}/stabs.info*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "{gdb_version}" >= "6.0"
|
|
||||||
%{_infodir}/annotate.info*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%endif
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
%build
|
|
||||||
mkdir -p build
|
|
||||||
cd build
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS" \
|
|
||||||
../gdb-%{gdb_version}/configure \
|
|
||||||
--build=%_build --host=%_host \
|
|
||||||
--target=@tool_target@ \
|
|
||||||
--verbose --disable-nls \
|
|
||||||
--without-included-gettext \
|
|
||||||
--disable-win32-registry \
|
|
||||||
--disable-werror \
|
|
||||||
--enable-sim \
|
|
||||||
--with-sysroot=%{_prefix}/@tool_target@/sys-root \
|
|
||||||
--prefix=%{_prefix} --bindir=%{_bindir} \
|
|
||||||
--includedir=%{_includedir} --libdir=%{_libdir} \
|
|
||||||
--mandir=%{_mandir} --infodir=%{_infodir}
|
|
||||||
|
|
||||||
make all
|
|
||||||
%if %build_infos
|
|
||||||
make info
|
|
||||||
%endif
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
%define gdb_version @GDB_VERS@
|
|
||||||
%define gdb_rpmvers %{expand:%(echo @GDB_VERS@ | tr - _)}
|
|
||||||
|
|
||||||
Name: @rpmprefix@@tool_target@-gdb
|
|
||||||
Summary: Gdb for target @tool_target@
|
|
||||||
Group: Development/Tools
|
|
||||||
Version: %{gdb_rpmvers}
|
|
||||||
Release: @GDB_RPMREL@%{?dist}
|
|
||||||
License: GPL/LGPL
|
|
||||||
URL: http://sources.redhat.com/gdb
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
%if "%{gdb_version}" >= "6.6"
|
|
||||||
BuildRequires: expat-devel
|
|
||||||
%endif
|
|
||||||
%if %build_infos
|
|
||||||
# Required for building the infos
|
|
||||||
BuildRequires: /sbin/install-info
|
|
||||||
BuildRequires: texinfo >= 4.2
|
|
||||||
%endif
|
|
||||||
%if "@tool_target@" == "sparc-rtems4.7"
|
|
||||||
BuildRequires: libtermcap-devel
|
|
||||||
%endif
|
|
||||||
BuildRequires: ncurses-devel
|
|
||||||
%if %build_infos
|
|
||||||
|
|
||||||
Requires: @rpmprefix@gdb-common
|
|
||||||
%endif
|
|
||||||
|
|
||||||
@SOURCES@
|
|
||||||
|
|
||||||
%description
|
|
||||||
GDB for target @tool_target@
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
cd build
|
|
||||||
%if "%{gdb_version}" >= "6.3"
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
|
||||||
%else
|
|
||||||
make prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
||||||
bindir=$RPM_BUILD_ROOT%{_bindir} \
|
|
||||||
includedir=$RPM_BUILD_ROOT%{_includedir} \
|
|
||||||
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
||||||
infodir=$RPM_BUILD_ROOT%{_infodir} \
|
|
||||||
mandir=$RPM_BUILD_ROOT%{_mandir} \
|
|
||||||
install
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
make prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
||||||
bindir=$RPM_BUILD_ROOT%{_bindir} \
|
|
||||||
includedir=$RPM_BUILD_ROOT%{_includedir} \
|
|
||||||
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
||||||
infodir=$RPM_BUILD_ROOT%{_infodir} \
|
|
||||||
mandir=$RPM_BUILD_ROOT%{_mandir} \
|
|
||||||
install-info
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %build_infos
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
touch $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
|
|
||||||
# These come from other packages
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/bfd*
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/configure*
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/standards*
|
|
||||||
%else
|
|
||||||
# Conflict with a native gdb's infos
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# We don't ship host files
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_libdir}/libiberty*
|
|
||||||
|
|
||||||
%if "%{gdb_version}" >= "6.4"
|
|
||||||
# host library, installed to a bogus directory
|
|
||||||
rm -f ${RPM_BUILD_ROOT}%{_libdir}/lib@tool_target@-sim.a
|
|
||||||
%endif
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
%prep
|
|
||||||
%setup -q -c -T -n %{name}-%{version}
|
|
||||||
|
|
||||||
%setup -q -D -T -n %{name}-%{version} -a0
|
|
||||||
cd gdb-%{gdb_version}
|
|
||||||
%{?PATCH0:%patch0 -p1}
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
# Extract %%__os_install_post into os_install_post~
|
|
||||||
cat << \EOF > os_install_post~
|
|
||||||
%__os_install_post
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Generate customized brp-*scripts
|
|
||||||
cat os_install_post~ | while read a x y; do
|
|
||||||
case $a in
|
|
||||||
# Prevent brp-strip* from trying to handle foreign binaries
|
|
||||||
*/brp-strip*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,find $RPM_BUILD_ROOT,find $RPM_BUILD_ROOT%_bindir $RPM_BUILD_ROOT%_libexecdir,' $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
# Fix up brp-compress to handle %%_prefix != /usr
|
|
||||||
*/brp-compress*)
|
|
||||||
b=$(basename $a)
|
|
||||||
sed -e 's,\./usr/,.%{_prefix}/,g' < $a > $b
|
|
||||||
chmod a+x $b
|
|
||||||
;;
|
|
||||||
%endif
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
sed -e 's,^[ ]*/usr/lib/rpm.*/brp-strip,./brp-strip,' \
|
|
||||||
%if "%{_prefix}" != "/usr"
|
|
||||||
-e 's,^[ ]*/usr/lib/rpm.*/brp-compress,./brp-compress,' \
|
|
||||||
%endif
|
|
||||||
< os_install_post~ > os_install_post
|
|
||||||
%define __os_install_post . ./os_install_post
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# ==============================================================
|
|
||||||
# @tool_target@-gdb
|
|
||||||
# ==============================================================
|
|
||||||
# %package -n @rpmprefix@@tool_target@-gdb
|
|
||||||
# Summary: rtems gdb for @tool_target@
|
|
||||||
# Group: Development/Tools
|
|
||||||
# %if %build_infos
|
|
||||||
# Requires: @rpmprefix@gdb-common
|
|
||||||
# %endif
|
|
||||||
|
|
||||||
%description -n @rpmprefix@@tool_target@-gdb
|
|
||||||
|
|
||||||
GNU gdb targetting @tool_target@.
|
|
||||||
|
|
||||||
%files -n @rpmprefix@@tool_target@-gdb
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%sysdir %{_mandir}
|
|
||||||
%sysdir %{_mandir}/man1
|
|
||||||
%{_mandir}/man1/@tool_target@-*.1*
|
|
||||||
|
|
||||||
%sysdir %{_bindir}
|
|
||||||
%{_bindir}/@tool_target@-*
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
noinst_DATA =
|
|
||||||
CLEANFILES =
|
|
||||||
EXTRA_DIST =
|
|
||||||
|
|
||||||
SPECSTRIP = $(top_srcdir)/specstrip --prefix=$(prefix) $(SPECSTRIP_OPTS)
|
|
||||||
|
|
||||||
MKSPEC = sed \
|
|
||||||
-e "s,[@]rpmprefix[@],$(rpmprefix),g" \
|
|
||||||
-e "s,[@]_prefix[@],$(prefix),g" \
|
|
||||||
-e "s/[@]tool_target[@]/$(TARGET)/g" \
|
|
||||||
-e "/^%package -n [@]rpmprefix[@][@]tool_target[@]-gcc/d" \
|
|
||||||
-e "@sysdirpattern@" \
|
|
||||||
-e "/[@]PATCH/d"
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
--- binutils-2.16.1/bfd/config.bfd 31 Jan 2005 17:18:47 -0000 1.181
|
|
||||||
+++ binutils-2.16.1/bfd/config.bfd 5 Jul 2005 15:32:00 -0000
|
|
||||||
@@ -369,7 +369,12 @@
|
|
||||||
targ_selvecs=bfd_elf32_frv_vec
|
|
||||||
;;
|
|
||||||
|
|
||||||
- h8300*-*-elf)
|
|
||||||
+ h8300*-*-rtemscoff*)
|
|
||||||
+ targ_defvec=h8300coff_vec
|
|
||||||
+ targ_underscore=yes
|
|
||||||
+ ;;
|
|
||||||
+
|
|
||||||
+ h8300*-*-elf | h8300*-*-rtems*)
|
|
||||||
targ_defvec=bfd_elf32_h8300_vec
|
|
||||||
targ_underscore=yes
|
|
||||||
;;
|
|
||||||
--- binutils-2.16.1/gas/configure.tgt 31 Jan 2005 17:18:51 -0000 1.3
|
|
||||||
+++ binutils-2.16.1/gas/configure.tgt 5 Jul 2005 15:32:03 -0000
|
|
||||||
@@ -163,9 +163,9 @@
|
|
||||||
hppa-*-bsd*) fmt=som em=hppa ;;
|
|
||||||
hppa-*-hiux*) fmt=som em=hppa ;;
|
|
||||||
|
|
||||||
- h8300-*-rtems*) fmt=coff ;;
|
|
||||||
+ h8300-*-rtemscoff*) fmt=coff ;;
|
|
||||||
h8300-*-coff) fmt=coff ;;
|
|
||||||
- h8300-*-elf) fmt=elf ;;
|
|
||||||
+ h8300-*-elf | h8300-*-rtems*) fmt=elf ;;
|
|
||||||
h8500-*-rtems*) fmt=coff ;;
|
|
||||||
h8500-*-coff) fmt=coff ;;
|
|
||||||
|
|
||||||
--- binutils-2.16.1/ld/configure.tgt 8 Feb 2005 19:54:27 -0000 1.165
|
|
||||||
+++ binutils-2.16.1/ld/configure.tgt 5 Jul 2005 15:32:18 -0000
|
|
||||||
@@ -280,10 +280,10 @@
|
|
||||||
targ_extra_ofiles="deffilep.o pe-dll.o" ;;
|
|
||||||
xscale-*-coff) targ_emul=armcoff ;;
|
|
||||||
xscale-*-elf) targ_emul=armelf ;;
|
|
||||||
-h8300-*-hms* | h8300-*-coff* | h8300-*-rtems*)
|
|
||||||
+h8300-*-hms* | h8300-*-coff* | h8300-*-rtemscoff*)
|
|
||||||
targ_emul=h8300; targ_extra_emuls="h8300h h8300s h8300hn h8300sn h8300sx h8300sxn"
|
|
||||||
;;
|
|
||||||
-h8300-*-elf*)
|
|
||||||
+h8300-*-elf* | h8300-*-rtems*)
|
|
||||||
targ_emul=h8300elf;
|
|
||||||
targ_extra_emuls="h8300helf h8300self h8300hnelf h8300snelf h8300sxelf h8300sxnelf"
|
|
||||||
;;
|
|
||||||
--- binutils-2.16.1/bfd/archive.c 3 Mar 2005 11:40:56 -0000 1.34
|
|
||||||
+++ binutils-2.16.1/bfd/archive.c 8 Jul 2005 06:28:30 -0000
|
|
||||||
@@ -1308,6 +1308,13 @@
|
|
||||||
#define getgid() 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+static void print_ar_size( struct ar_hdr* hdr, int val )
|
|
||||||
+{
|
|
||||||
+ char buffer[sizeof(hdr->ar_size)+1];
|
|
||||||
+ sprintf(buffer,"%-10d", val);
|
|
||||||
+ memcpy(hdr->ar_size,buffer,sizeof(hdr->ar_size));
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
/* Takes a filename, returns an arelt_data for it, or NULL if it can't
|
|
||||||
make one. The filename must refer to a filename in the filesystem.
|
|
||||||
The filename field of the ar_hdr will NOT be initialized. If member
|
|
||||||
@@ -1368,7 +1375,7 @@
|
|
||||||
#endif
|
|
||||||
sprintf ((hdr->ar_gid), "%ld", (long) status.st_gid);
|
|
||||||
sprintf ((hdr->ar_mode), "%-8o", (unsigned int) status.st_mode);
|
|
||||||
- sprintf ((hdr->ar_size), "%-10ld", (long) status.st_size);
|
|
||||||
+ print_ar_size(hdr, (long) status.st_size);
|
|
||||||
/* Correct for a lossage in sprintf whereby it null-terminates. I cannot
|
|
||||||
understand how these C losers could design such a ramshackle bunch of
|
|
||||||
IO operations. */
|
|
||||||
@@ -1660,7 +1667,7 @@
|
|
||||||
memset (&hdr, 0, sizeof (struct ar_hdr));
|
|
||||||
strcpy (hdr.ar_name, ename);
|
|
||||||
/* Round size up to even number in archive header. */
|
|
||||||
- sprintf (&(hdr.ar_size[0]), "%-10d",
|
|
||||||
+ print_ar_size(&hdr,
|
|
||||||
(int) ((elength + 1) & ~(bfd_size_type) 1));
|
|
||||||
strncpy (hdr.ar_fmag, ARFMAG, 2);
|
|
||||||
for (i = 0; i < sizeof (struct ar_hdr); i++)
|
|
||||||
@@ -1913,7 +1920,7 @@
|
|
||||||
sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
|
|
||||||
sprintf (hdr.ar_uid, "%ld", (long) getuid ());
|
|
||||||
sprintf (hdr.ar_gid, "%ld", (long) getgid ());
|
|
||||||
- sprintf (hdr.ar_size, "%-10d", (int) mapsize);
|
|
||||||
+ print_ar_size(&hdr, (int) mapsize);
|
|
||||||
strncpy (hdr.ar_fmag, ARFMAG, 2);
|
|
||||||
for (i = 0; i < sizeof (struct ar_hdr); i++)
|
|
||||||
if (((char *) (&hdr))[i] == '\0')
|
|
||||||
@@ -2068,7 +2075,7 @@
|
|
||||||
|
|
||||||
memset (&hdr, 0, sizeof (struct ar_hdr));
|
|
||||||
hdr.ar_name[0] = '/';
|
|
||||||
- sprintf (hdr.ar_size, "%-10d", (int) mapsize);
|
|
||||||
+ print_ar_size (&hdr, (int) mapsize);
|
|
||||||
sprintf (hdr.ar_date, "%ld", (long) time (NULL));
|
|
||||||
/* This, at least, is what Intel coff sets the values to. */
|
|
||||||
sprintf ((hdr.ar_uid), "%d", 0);
|
|
||||||
@@ -1,556 +0,0 @@
|
|||||||
diff -uNr binutils-2.17.orig/bfd/bfd-in2.h binutils-2.17/bfd/bfd-in2.h
|
|
||||||
--- binutils-2.17.orig/bfd/bfd-in2.h 2006-03-26 01:38:42.000000000 +0100
|
|
||||||
+++ binutils-2.17/bfd/bfd-in2.h 2006-10-21 13:53:23.000000000 +0200
|
|
||||||
@@ -643,6 +643,12 @@
|
|
||||||
DYN_NO_NEEDED = 8
|
|
||||||
};
|
|
||||||
|
|
||||||
+enum notice_asneeded_action {
|
|
||||||
+ notice_as_needed,
|
|
||||||
+ notice_not_needed,
|
|
||||||
+ notice_needed
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
extern bfd_boolean bfd_elf_record_link_assignment
|
|
||||||
(bfd *, struct bfd_link_info *, const char *, bfd_boolean,
|
|
||||||
bfd_boolean);
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/bfd-in.h binutils-2.17/bfd/bfd-in.h
|
|
||||||
--- binutils-2.17.orig/bfd/bfd-in.h 2006-03-16 13:20:15.000000000 +0100
|
|
||||||
+++ binutils-2.17/bfd/bfd-in.h 2006-10-21 13:53:23.000000000 +0200
|
|
||||||
@@ -636,6 +636,12 @@
|
|
||||||
DYN_NO_NEEDED = 8
|
|
||||||
};
|
|
||||||
|
|
||||||
+enum notice_asneeded_action {
|
|
||||||
+ notice_as_needed,
|
|
||||||
+ notice_not_needed,
|
|
||||||
+ notice_needed
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
extern bfd_boolean bfd_elf_record_link_assignment
|
|
||||||
(bfd *, struct bfd_link_info *, const char *, bfd_boolean,
|
|
||||||
bfd_boolean);
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/ChangeLog binutils-2.17/bfd/ChangeLog
|
|
||||||
--- binutils-2.17.orig/bfd/ChangeLog 2006-06-23 20:18:16.000000000 +0200
|
|
||||||
+++ binutils-2.17/bfd/ChangeLog 2006-10-21 13:53:23.000000000 +0200
|
|
||||||
@@ -1,3 +1,25 @@
|
|
||||||
+2006-08-08 Nick Clifton <nickc@redhat.com>
|
|
||||||
+
|
|
||||||
+ PR binutils/2724
|
|
||||||
+ * coffcode.h (coff_new_section_hook): Only modify the section
|
|
||||||
+ symbol of sections which were created by the user.
|
|
||||||
+
|
|
||||||
+2006-07-19 Alan Modra <amodra@bigpond.net.au>
|
|
||||||
+
|
|
||||||
+ * bfd-in.h (enum notice_asneeded_action): Define.
|
|
||||||
+ * bfd-in2.h: Regenerate.
|
|
||||||
+ * elflink.c (elf_link_add_object_symbols): Call linker "notice"
|
|
||||||
+ function with NULL name for as-needed handling.
|
|
||||||
+
|
|
||||||
+2006-07-12 Matthew R. Dempsky <mrd@alkemio.org>
|
|
||||||
+
|
|
||||||
+ * cpu-m68k.c (bfd_m68k_compatible): Handle CPU32.
|
|
||||||
+
|
|
||||||
+2006-06-23 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
+
|
|
||||||
+ * Makefile.am: Clear RELEASE.
|
|
||||||
+ * Makefile.in: Regenerated.
|
|
||||||
+
|
|
||||||
2006-06-23 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
|
|
||||||
* configure.in: Update version to 2.17.
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/coffcode.h binutils-2.17/bfd/coffcode.h
|
|
||||||
--- binutils-2.17.orig/bfd/coffcode.h 2005-10-25 19:40:09.000000000 +0200
|
|
||||||
+++ binutils-2.17/bfd/coffcode.h 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1546,9 +1546,6 @@
|
|
||||||
static bfd_boolean
|
|
||||||
coff_new_section_hook (bfd * abfd, asection * section)
|
|
||||||
{
|
|
||||||
- combined_entry_type *native;
|
|
||||||
- bfd_size_type amt;
|
|
||||||
-
|
|
||||||
section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
|
|
||||||
|
|
||||||
#ifdef RS6000COFF_C
|
|
||||||
@@ -1560,27 +1557,34 @@
|
|
||||||
section->alignment_power = bfd_xcoff_data_align_power (abfd);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
- /* Allocate aux records for section symbols, to store size and
|
|
||||||
- related info.
|
|
||||||
-
|
|
||||||
- @@ The 10 is a guess at a plausible maximum number of aux entries
|
|
||||||
- (but shouldn't be a constant). */
|
|
||||||
- amt = sizeof (combined_entry_type) * 10;
|
|
||||||
- native = bfd_zalloc (abfd, amt);
|
|
||||||
- if (native == NULL)
|
|
||||||
- return FALSE;
|
|
||||||
-
|
|
||||||
- /* We don't need to set up n_name, n_value, or n_scnum in the native
|
|
||||||
- symbol information, since they'll be overridden by the BFD symbol
|
|
||||||
- anyhow. However, we do need to set the type and storage class,
|
|
||||||
- in case this symbol winds up getting written out. The value 0
|
|
||||||
- for n_numaux is already correct. */
|
|
||||||
-
|
|
||||||
- native->u.syment.n_type = T_NULL;
|
|
||||||
- native->u.syment.n_sclass = C_STAT;
|
|
||||||
+ /* PR binutils/2724: Only real sections have a symbol that
|
|
||||||
+ has the coff_symbol_type structure allocated for it. */
|
|
||||||
+ if (! bfd_is_const_section (section))
|
|
||||||
+ {
|
|
||||||
+ combined_entry_type *native;
|
|
||||||
+ bfd_size_type amt;
|
|
||||||
+
|
|
||||||
+ /* Allocate aux records for section symbols, to store size and
|
|
||||||
+ related info.
|
|
||||||
+
|
|
||||||
+ @@ The 10 is a guess at a plausible maximum number of aux entries
|
|
||||||
+ (but shouldn't be a constant). */
|
|
||||||
+ amt = sizeof (combined_entry_type) * 10;
|
|
||||||
+ native = bfd_zalloc (abfd, amt);
|
|
||||||
+ if (native == NULL)
|
|
||||||
+ return FALSE;
|
|
||||||
|
|
||||||
- coffsymbol (section->symbol)->native = native;
|
|
||||||
+ /* We don't need to set up n_name, n_value, or n_scnum in the native
|
|
||||||
+ symbol information, since they'll be overridden by the BFD symbol
|
|
||||||
+ anyhow. However, we do need to set the type and storage class,
|
|
||||||
+ in case this symbol winds up getting written out. The value 0
|
|
||||||
+ for n_numaux is already correct. */
|
|
||||||
+ native->u.syment.n_type = T_NULL;
|
|
||||||
+ native->u.syment.n_sclass = C_STAT;
|
|
||||||
|
|
||||||
+ coffsymbol (section->symbol)->native = native;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
coff_set_custom_section_alignment (abfd, section,
|
|
||||||
coff_section_alignment_table,
|
|
||||||
coff_section_alignment_table_size);
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/cpu-m68k.c binutils-2.17/bfd/cpu-m68k.c
|
|
||||||
--- binutils-2.17.orig/bfd/cpu-m68k.c 2006-03-25 11:24:27.000000000 +0100
|
|
||||||
+++ binutils-2.17/bfd/cpu-m68k.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -202,6 +202,9 @@
|
|
||||||
if (a->mach <= bfd_mach_m68060 && b->mach <= bfd_mach_m68060)
|
|
||||||
/* Merge m68k machine. */
|
|
||||||
return a->mach > b->mach ? a : b;
|
|
||||||
+ else if (a->mach == bfd_mach_cpu32 && b->mach == bfd_mach_cpu32)
|
|
||||||
+ /* CPU32 is compatible with itself. */
|
|
||||||
+ return a;
|
|
||||||
else if (a->mach >= bfd_mach_mcf_isa_a_nodiv
|
|
||||||
&& b->mach >= bfd_mach_mcf_isa_a_nodiv)
|
|
||||||
{
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/elflink.c binutils-2.17/bfd/elflink.c
|
|
||||||
--- binutils-2.17.orig/bfd/elflink.c 2006-05-22 17:06:36.000000000 +0200
|
|
||||||
+++ binutils-2.17/bfd/elflink.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -3496,6 +3496,13 @@
|
|
||||||
if (alloc_mark == NULL)
|
|
||||||
goto error_free_vers;
|
|
||||||
|
|
||||||
+ /* Make a special call to the linker "notice" function to
|
|
||||||
+ tell it that we are about to handle an as-needed lib. */
|
|
||||||
+ if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
|
|
||||||
+ notice_as_needed))
|
|
||||||
+ return FALSE;
|
|
||||||
+
|
|
||||||
+
|
|
||||||
/* Clone the symbol table and sym hashes. Remember some
|
|
||||||
pointers into the symbol table, and dynamic symbol count. */
|
|
||||||
old_hash = (char *) old_tab + tabsize;
|
|
||||||
@@ -4169,6 +4176,12 @@
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
+ /* Make a special call to the linker "notice" function to
|
|
||||||
+ tell it that symbols added for crefs may need to be removed. */
|
|
||||||
+ if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
|
|
||||||
+ notice_not_needed))
|
|
||||||
+ return FALSE;
|
|
||||||
+
|
|
||||||
free (old_tab);
|
|
||||||
objalloc_free_block ((struct objalloc *) htab->root.table.memory,
|
|
||||||
alloc_mark);
|
|
||||||
@@ -4179,6 +4192,9 @@
|
|
||||||
|
|
||||||
if (old_tab != NULL)
|
|
||||||
{
|
|
||||||
+ if (!(*info->callbacks->notice) (info, NULL, abfd, NULL,
|
|
||||||
+ notice_needed))
|
|
||||||
+ return FALSE;
|
|
||||||
free (old_tab);
|
|
||||||
old_tab = NULL;
|
|
||||||
}
|
|
||||||
diff -uNr binutils-2.17.orig/bfd/version.h binutils-2.17/bfd/version.h
|
|
||||||
--- binutils-2.17.orig/bfd/version.h 2006-06-23 20:14:41.000000000 +0200
|
|
||||||
+++ binutils-2.17/bfd/version.h 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,3 @@
|
|
||||||
-#define BFD_VERSION_DATE 20060623
|
|
||||||
+#define BFD_VERSION_DATE 20061021
|
|
||||||
#define BFD_VERSION @bfd_version@
|
|
||||||
#define BFD_VERSION_STRING @bfd_version_string@
|
|
||||||
diff -uNr binutils-2.17.orig/binutils/ChangeLog binutils-2.17/binutils/ChangeLog
|
|
||||||
--- binutils-2.17.orig/binutils/ChangeLog 2006-06-12 15:05:03.000000000 +0200
|
|
||||||
+++ binutils-2.17/binutils/ChangeLog 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,8 @@
|
|
||||||
+2006-08-15 Nick Clifton <nickc@redhat.com>
|
|
||||||
+
|
|
||||||
+ PR binutils/3039
|
|
||||||
+ * wrstabs.c (stab_tag_type): Initialize 'size'.
|
|
||||||
+
|
|
||||||
2006-06-07 Joseph S. Myers <joseph@codesourcery.com>
|
|
||||||
|
|
||||||
* po/Make-in (pdf, ps): New dummy targets.
|
|
||||||
diff -uNr binutils-2.17.orig/binutils/wrstabs.c binutils-2.17/binutils/wrstabs.c
|
|
||||||
--- binutils-2.17.orig/binutils/wrstabs.c 2006-03-16 13:20:16.000000000 +0100
|
|
||||||
+++ binutils-2.17/binutils/wrstabs.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1869,7 +1869,7 @@
|
|
||||||
{
|
|
||||||
struct stab_write_handle *info = (struct stab_write_handle *) p;
|
|
||||||
long index;
|
|
||||||
- unsigned int size;
|
|
||||||
+ unsigned int size = 0;
|
|
||||||
|
|
||||||
index = stab_get_struct_index (info, name, id, kind, &size);
|
|
||||||
if (index < 0)
|
|
||||||
diff -uNr binutils-2.17.orig/gas/ChangeLog binutils-2.17/gas/ChangeLog
|
|
||||||
--- binutils-2.17.orig/gas/ChangeLog 2006-06-12 15:05:03.000000000 +0200
|
|
||||||
+++ binutils-2.17/gas/ChangeLog 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,8 @@
|
|
||||||
+2006-07-19 Mat Hostetter <mat@lcs.mit.edu>
|
|
||||||
+
|
|
||||||
+ * symbols.c (report_op_error): Fix pasto. Don't use as_bad_where
|
|
||||||
+ when file and line unknown.
|
|
||||||
+
|
|
||||||
2006-06-07 Joseph S. Myers <joseph@codesourcery.com>
|
|
||||||
|
|
||||||
* po/Make-in (pdf, ps): New dummy targets.
|
|
||||||
diff -uNr binutils-2.17.orig/gas/symbols.c binutils-2.17/gas/symbols.c
|
|
||||||
--- binutils-2.17.orig/gas/symbols.c 2006-01-09 18:14:40.000000000 +0100
|
|
||||||
+++ binutils-2.17/gas/symbols.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -928,13 +928,11 @@
|
|
||||||
&& seg_right != undefined_section)
|
|
||||||
{
|
|
||||||
if (right)
|
|
||||||
- as_bad_where (file, line,
|
|
||||||
- _("invalid sections for operation on `%s' and `%s' setting `%s'"),
|
|
||||||
- S_GET_NAME (left), S_GET_NAME (right), S_GET_NAME (symp));
|
|
||||||
+ as_bad (_("invalid sections for operation on `%s' and `%s' setting `%s'"),
|
|
||||||
+ S_GET_NAME (left), S_GET_NAME (right), S_GET_NAME (symp));
|
|
||||||
else
|
|
||||||
- as_bad_where (file, line,
|
|
||||||
- _("invalid section for operation on `%s' setting `%s'"),
|
|
||||||
- S_GET_NAME (left), S_GET_NAME (symp));
|
|
||||||
+ as_bad (_("invalid section for operation on `%s' setting `%s'"),
|
|
||||||
+ S_GET_NAME (left), S_GET_NAME (symp));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
diff -uNr binutils-2.17.orig/ld/ChangeLog binutils-2.17/ld/ChangeLog
|
|
||||||
--- binutils-2.17.orig/ld/ChangeLog 2006-06-12 15:07:28.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/ChangeLog 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,20 @@
|
|
||||||
+2006-07-19 Alan Modra <amodra@bigpond.net.au>
|
|
||||||
+
|
|
||||||
+ * ld.h (handle_asneeded_cref): Declare.
|
|
||||||
+ * ldcref.c: Include objalloc.h.
|
|
||||||
+ (old_table, old_tab, alloc_mark): New variables.
|
|
||||||
+ (tabsize, entsize, refsize, old_symcount): Likewise.
|
|
||||||
+ (add_cref): Use bfd_hash_allocate for refs.
|
|
||||||
+ (handle_asneeded_cref): New function.
|
|
||||||
+ * ldmain.c (notice): Call handle_asneeded_cref for NULL name.
|
|
||||||
+
|
|
||||||
+2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
+
|
|
||||||
+ Backport:
|
|
||||||
+ 2006-05-19 Alan Modra <amodra@bigpond.net.au>
|
|
||||||
+ * ldlang.c (lang_size_sections_1): Don't check mem regions for
|
|
||||||
+ os->ignored sections.
|
|
||||||
+
|
|
||||||
2006-06-12 Fred Fish <fnf@specifix.com>
|
|
||||||
|
|
||||||
* emulparams/elf32bmip.sh (OTHER_SECTIONS): Keep the
|
|
||||||
diff -uNr binutils-2.17.orig/ld/configure.tgt binutils-2.17/ld/configure.tgt
|
|
||||||
--- binutils-2.17.orig/ld/configure.tgt 2006-04-05 14:41:57.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/configure.tgt 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -83,7 +83,8 @@
|
|
||||||
avr-*-*) targ_emul=avr2
|
|
||||||
targ_extra_emuls="avr1 avr3 avr4 avr5"
|
|
||||||
;;
|
|
||||||
-bfin-*-elf) targ_emul=elf32bfin; targ_extra_emuls="elf32bfinfd" ;;
|
|
||||||
+bfin-*-elf | bfin-*-rtems*)
|
|
||||||
+ targ_emul=elf32bfin; targ_extra_emuls="elf32bfinfd" ;;
|
|
||||||
bfin-*-uclinux*) targ_emul=elf32bfin; targ_extra_emuls="elf32bfinfd" ;;
|
|
||||||
cr16c-*-elf*) targ_emul=elf32cr16c
|
|
||||||
;;
|
|
||||||
diff -uNr binutils-2.17.orig/ld/emulparams/h8300elf.sh binutils-2.17/ld/emulparams/h8300elf.sh
|
|
||||||
--- binutils-2.17.orig/ld/emulparams/h8300elf.sh 2005-12-22 18:43:34.000000000 +0100
|
|
||||||
+++ binutils-2.17/ld/emulparams/h8300elf.sh 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -17,7 +17,7 @@
|
|
||||||
TINY_DATA_SECTION=".tinydata 0xff8000 :
|
|
||||||
{
|
|
||||||
*(.tinydata)
|
|
||||||
- _tinydata = .;
|
|
||||||
+ ${RELOCATING+ _tinydata = .; }
|
|
||||||
}"
|
|
||||||
TINY_BSS_SECTION=".tinybss : AT (_tinydata)
|
|
||||||
{
|
|
||||||
diff -uNr binutils-2.17.orig/ld/ldcref.c binutils-2.17/ld/ldcref.c
|
|
||||||
--- binutils-2.17.orig/ld/ldcref.c 2006-03-16 13:20:16.000000000 +0100
|
|
||||||
+++ binutils-2.17/ld/ldcref.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#include "sysdep.h"
|
|
||||||
#include "bfdlink.h"
|
|
||||||
#include "libiberty.h"
|
|
||||||
+#include "objalloc.h"
|
|
||||||
|
|
||||||
#include "ld.h"
|
|
||||||
#include "ldmain.h"
|
|
||||||
@@ -101,6 +102,15 @@
|
|
||||||
|
|
||||||
static size_t cref_symcount;
|
|
||||||
|
|
||||||
+/* Used to take a snapshot of the cref hash table when starting to
|
|
||||||
+ add syms from an as-needed library. */
|
|
||||||
+static struct bfd_hash_entry **old_table;
|
|
||||||
+static unsigned int old_size;
|
|
||||||
+static void *old_tab;
|
|
||||||
+static void *alloc_mark;
|
|
||||||
+static size_t tabsize, entsize, refsize;
|
|
||||||
+static size_t old_symcount;
|
|
||||||
+
|
|
||||||
/* Create an entry in a cref hash table. */
|
|
||||||
|
|
||||||
static struct bfd_hash_entry *
|
|
||||||
@@ -165,7 +175,9 @@
|
|
||||||
|
|
||||||
if (r == NULL)
|
|
||||||
{
|
|
||||||
- r = xmalloc (sizeof *r);
|
|
||||||
+ r = bfd_hash_allocate (&cref_table.root, sizeof *r);
|
|
||||||
+ if (r == NULL)
|
|
||||||
+ einfo (_("%X%P: cref alloc failed: %E\n"));
|
|
||||||
r->next = h->refs;
|
|
||||||
h->refs = r;
|
|
||||||
r->abfd = abfd;
|
|
||||||
@@ -182,6 +194,123 @@
|
|
||||||
r->def = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
+/* Called before loading an as-needed library to take a snapshot of
|
|
||||||
+ the cref hash table, and after we have loaded or found that the
|
|
||||||
+ library was not needed. */
|
|
||||||
+
|
|
||||||
+bfd_boolean
|
|
||||||
+handle_asneeded_cref (bfd *abfd ATTRIBUTE_UNUSED,
|
|
||||||
+ enum notice_asneeded_action act)
|
|
||||||
+{
|
|
||||||
+ unsigned int i;
|
|
||||||
+
|
|
||||||
+ if (!cref_initialized)
|
|
||||||
+ return TRUE;
|
|
||||||
+
|
|
||||||
+ if (act == notice_as_needed)
|
|
||||||
+ {
|
|
||||||
+ char *old_ent, *old_ref;
|
|
||||||
+
|
|
||||||
+ for (i = 0; i < cref_table.root.size; i++)
|
|
||||||
+ {
|
|
||||||
+ struct bfd_hash_entry *p;
|
|
||||||
+ struct cref_hash_entry *c;
|
|
||||||
+ struct cref_ref *r;
|
|
||||||
+
|
|
||||||
+ for (p = cref_table.root.table[i]; p != NULL; p = p->next)
|
|
||||||
+ {
|
|
||||||
+ entsize += cref_table.root.entsize;
|
|
||||||
+ c = (struct cref_hash_entry *) p;
|
|
||||||
+ for (r = c->refs; r != NULL; r = r->next)
|
|
||||||
+ refsize += sizeof (struct cref_hash_entry);
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ tabsize = cref_table.root.size * sizeof (struct bfd_hash_entry *);
|
|
||||||
+ old_tab = xmalloc (tabsize + entsize + refsize);
|
|
||||||
+
|
|
||||||
+ alloc_mark = bfd_hash_allocate (&cref_table.root, 1);
|
|
||||||
+ if (alloc_mark == NULL)
|
|
||||||
+ return FALSE;
|
|
||||||
+
|
|
||||||
+ memcpy (old_tab, cref_table.root.table, tabsize);
|
|
||||||
+ old_ent = (char *) old_tab + tabsize;
|
|
||||||
+ old_ref = (char *) old_ent + entsize;
|
|
||||||
+ old_table = cref_table.root.table;
|
|
||||||
+ old_size = cref_table.root.size;
|
|
||||||
+ old_symcount = cref_symcount;
|
|
||||||
+
|
|
||||||
+ for (i = 0; i < cref_table.root.size; i++)
|
|
||||||
+ {
|
|
||||||
+ struct bfd_hash_entry *p;
|
|
||||||
+ struct cref_hash_entry *c;
|
|
||||||
+ struct cref_ref *r;
|
|
||||||
+
|
|
||||||
+ for (p = cref_table.root.table[i]; p != NULL; p = p->next)
|
|
||||||
+ {
|
|
||||||
+ memcpy (old_ent, p, cref_table.root.entsize);
|
|
||||||
+ old_ent = (char *) old_ent + cref_table.root.entsize;
|
|
||||||
+ c = (struct cref_hash_entry *) p;
|
|
||||||
+ for (r = c->refs; r != NULL; r = r->next)
|
|
||||||
+ {
|
|
||||||
+ memcpy (old_ref, r, sizeof (struct cref_hash_entry));
|
|
||||||
+ old_ref = (char *) old_ref + sizeof (struct cref_hash_entry);
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ return TRUE;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (act == notice_not_needed)
|
|
||||||
+ {
|
|
||||||
+ char *old_ent, *old_ref;
|
|
||||||
+
|
|
||||||
+ if (old_tab == NULL)
|
|
||||||
+ {
|
|
||||||
+ /* The only way old_tab can be NULL is if the cref hash table
|
|
||||||
+ had not been initialised when notice_as_needed. */
|
|
||||||
+ bfd_hash_table_free (&cref_table.root);
|
|
||||||
+ cref_initialized = FALSE;
|
|
||||||
+ return TRUE;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ old_ent = (char *) old_tab + tabsize;
|
|
||||||
+ old_ref = (char *) old_ent + entsize;
|
|
||||||
+ cref_table.root.table = old_table;
|
|
||||||
+ cref_table.root.size = old_size;
|
|
||||||
+ memcpy (cref_table.root.table, old_tab, tabsize);
|
|
||||||
+ cref_symcount = old_symcount;
|
|
||||||
+
|
|
||||||
+ for (i = 0; i < cref_table.root.size; i++)
|
|
||||||
+ {
|
|
||||||
+ struct bfd_hash_entry *p;
|
|
||||||
+ struct cref_hash_entry *c;
|
|
||||||
+ struct cref_ref *r;
|
|
||||||
+
|
|
||||||
+ for (p = cref_table.root.table[i]; p != NULL; p = p->next)
|
|
||||||
+ {
|
|
||||||
+ memcpy (p, old_ent, cref_table.root.entsize);
|
|
||||||
+ old_ent = (char *) old_ent + cref_table.root.entsize;
|
|
||||||
+ c = (struct cref_hash_entry *) p;
|
|
||||||
+ for (r = c->refs; r != NULL; r = r->next)
|
|
||||||
+ {
|
|
||||||
+ memcpy (r, old_ref, sizeof (struct cref_hash_entry));
|
|
||||||
+ old_ref = (char *) old_ref + sizeof (struct cref_hash_entry);
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ objalloc_free_block ((struct objalloc *) cref_table.root.memory,
|
|
||||||
+ alloc_mark);
|
|
||||||
+ }
|
|
||||||
+ else if (act != notice_needed)
|
|
||||||
+ return FALSE;
|
|
||||||
+
|
|
||||||
+ free (old_tab);
|
|
||||||
+ old_tab = NULL;
|
|
||||||
+ return TRUE;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
/* Copy the addresses of the hash table entries into an array. This
|
|
||||||
is called via cref_hash_traverse. We also fill in the demangled
|
|
||||||
name. */
|
|
||||||
diff -uNr binutils-2.17.orig/ld/ld.h binutils-2.17/ld/ld.h
|
|
||||||
--- binutils-2.17.orig/ld/ld.h 2005-09-30 13:42:04.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/ld.h 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
/* ld.h -- general linker header file
|
|
||||||
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
|
||||||
- 2001, 2002, 2003, 2004, 2005
|
|
||||||
+ 2001, 2002, 2003, 2004, 2005, 2006
|
|
||||||
Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
This file is part of GLD, the Gnu Linker.
|
|
||||||
@@ -282,6 +282,7 @@
|
|
||||||
|
|
||||||
extern int yyparse (void);
|
|
||||||
extern void add_cref (const char *, bfd *, asection *, bfd_vma);
|
|
||||||
+extern bfd_boolean handle_asneeded_cref (bfd *, enum notice_asneeded_action);
|
|
||||||
extern void output_cref (FILE *);
|
|
||||||
extern void check_nocrossrefs (void);
|
|
||||||
extern void ld_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
|
|
||||||
diff -uNr binutils-2.17.orig/ld/ldlang.c binutils-2.17/ld/ldlang.c
|
|
||||||
--- binutils-2.17.orig/ld/ldlang.c 2006-06-12 15:05:04.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/ldlang.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -4207,7 +4207,8 @@
|
|
||||||
/* If a loadable section is using the default memory
|
|
||||||
region, and some non default memory regions were
|
|
||||||
defined, issue an error message. */
|
|
||||||
- if (!IGNORE_SECTION (os->bfd_section)
|
|
||||||
+ if (!os->ignored
|
|
||||||
+ && !IGNORE_SECTION (os->bfd_section)
|
|
||||||
&& ! link_info.relocatable
|
|
||||||
&& check_regions
|
|
||||||
&& strcmp (os->region->name,
|
|
||||||
diff -uNr binutils-2.17.orig/ld/ldmain.c binutils-2.17/ld/ldmain.c
|
|
||||||
--- binutils-2.17.orig/ld/ldmain.c 2006-04-06 20:52:45.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/ldmain.c 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1511,6 +1511,13 @@
|
|
||||||
asection *section,
|
|
||||||
bfd_vma value)
|
|
||||||
{
|
|
||||||
+ if (name == NULL)
|
|
||||||
+ {
|
|
||||||
+ if (command_line.cref || nocrossref_list != NULL)
|
|
||||||
+ return handle_asneeded_cref (abfd, value);
|
|
||||||
+ return TRUE;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
if (! info->notice_all
|
|
||||||
|| (info->notice_hash != NULL
|
|
||||||
&& bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE) != NULL))
|
|
||||||
diff -uNr binutils-2.17.orig/ld/testsuite/ChangeLog binutils-2.17/ld/testsuite/ChangeLog
|
|
||||||
--- binutils-2.17.orig/ld/testsuite/ChangeLog 2006-06-12 15:44:33.000000000 +0200
|
|
||||||
+++ binutils-2.17/ld/testsuite/ChangeLog 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,17 @@
|
|
||||||
+2006-07-12 Richard Sandiford <richard@codesourcery.com>
|
|
||||||
+
|
|
||||||
+ * ld-m68k/merge-ok-1c.d: New test.
|
|
||||||
+ * ld-m68k/m68k.exp: Run it.
|
|
||||||
+
|
|
||||||
+2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
+
|
|
||||||
+ Backport:
|
|
||||||
+ 2006-05-19 Alan Modra <amodra@bigpond.net.au>
|
|
||||||
+ * ld-scripts/empty-orphan.d: Update again.
|
|
||||||
+
|
|
||||||
+ * ld-scripts/empty-orphan.t: Discard .reginfo.
|
|
||||||
+ * ld-scripts/empty-orphan.d: Update.
|
|
||||||
+
|
|
||||||
2006-06-12 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
|
|
||||||
Backport:
|
|
||||||
diff -uNr binutils-2.17.orig/ld/testsuite/ld-m68k/m68k.exp binutils-2.17/ld/testsuite/ld-m68k/m68k.exp
|
|
||||||
--- binutils-2.17.orig/ld/testsuite/ld-m68k/m68k.exp 2006-03-25 11:24:27.000000000 +0100
|
|
||||||
+++ binutils-2.17/ld/testsuite/ld-m68k/m68k.exp 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -53,3 +53,4 @@
|
|
||||||
run_dump_test "merge-error-1e"
|
|
||||||
run_dump_test "merge-ok-1a"
|
|
||||||
run_dump_test "merge-ok-1b"
|
|
||||||
+run_dump_test "merge-ok-1c"
|
|
||||||
diff -uNr binutils-2.17.orig/ld/testsuite/ld-scripts/empty-orphan.d binutils-2.17/ld/testsuite/ld-scripts/empty-orphan.d
|
|
||||||
--- binutils-2.17.orig/ld/testsuite/ld-scripts/empty-orphan.d 2005-03-17 17:20:39.000000000 +0100
|
|
||||||
+++ binutils-2.17/ld/testsuite/ld-scripts/empty-orphan.d 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -1,3 +1,6 @@
|
|
||||||
#source: empty-orphan.s
|
|
||||||
#ld: -T empty-orphan.t
|
|
||||||
-#error: no memory region specified for loadable section
|
|
||||||
+#readelf: -l --wide
|
|
||||||
+#...
|
|
||||||
+ +LOAD +[x0-9a-f]+ [x0]+70000000 [x0]+70000000 [x0]+(2|4|8|10|20|40|80) .*
|
|
||||||
+#pass
|
|
||||||
diff -uNr binutils-2.17.orig/ld/testsuite/ld-scripts/empty-orphan.t binutils-2.17/ld/testsuite/ld-scripts/empty-orphan.t
|
|
||||||
--- binutils-2.17.orig/ld/testsuite/ld-scripts/empty-orphan.t 2005-03-17 17:20:39.000000000 +0100
|
|
||||||
+++ binutils-2.17/ld/testsuite/ld-scripts/empty-orphan.t 2006-10-21 13:53:24.000000000 +0200
|
|
||||||
@@ -17,5 +17,6 @@
|
|
||||||
.text : { *(.text) } > text_mem : text_phdr
|
|
||||||
.data : { *(.data) } > data_mem : data_phdr
|
|
||||||
.bss : { *(.bss) } > data_mem : data_phdr
|
|
||||||
+ /DISCARD/ : { *(.reginfo) }
|
|
||||||
/* .orphan_data is an orphan */
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
--- gcc-4.0.3.orig/gcc/Makefile.in 2006-08-22 05:51:40.000000000 -0500
|
|
||||||
+++ gcc-4.0.3/gcc/Makefile.in 2006-08-22 05:48:01.000000000 -0500
|
|
||||||
@@ -3275,9 +3275,9 @@
|
|
||||||
install-driver: installdirs xgcc$(exeext)
|
|
||||||
-rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
-$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
- -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)
|
|
||||||
+ -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
|
|
||||||
-( cd $(DESTDIR)$(bindir) && \
|
|
||||||
- $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version) )
|
|
||||||
+ $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version)$(exeext) )
|
|
||||||
-if [ -f gcc-cross$(exeext) ] ; then \
|
|
||||||
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
|
||||||
rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
--- gcc-4.1.1.orig/gcc/config.gcc (revision 114982)
|
|
||||||
+++ gcc-4.1.1/gcc/config.gcc (working copy)
|
|
||||||
@@ -1560,7 +1560,7 @@
|
|
||||||
tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
||||||
use_fixproto=yes
|
|
||||||
;;
|
|
||||||
-mips*-*-rtems*)
|
|
||||||
+mips-*-rtems*)
|
|
||||||
tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
|
|
||||||
tmake_file="mips/t-elf t-rtems mips/t-rtems"
|
|
||||||
;;
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/c4x/rtems.h (revision 114982)
|
|
||||||
+++ gcc-4.1.1/gcc/config/c4x/rtems.h (working copy)
|
|
||||||
@@ -24,6 +24,5 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
- builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/elf.h (revision 114982)
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/elf.h (working copy)
|
|
||||||
@@ -48,5 +48,3 @@
|
|
||||||
|
|
||||||
#undef ENDFILE_SPEC
|
|
||||||
#define ENDFILE_SPEC "crtend%O%s crtn%O%s"
|
|
||||||
-
|
|
||||||
-#define NO_IMPLICIT_EXTERN_C 1
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/t-rtems (revision 114982)
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/t-rtems (working copy)
|
|
||||||
@@ -1,5 +1,16 @@
|
|
||||||
# Custom multilibs for RTEMS
|
|
||||||
|
|
||||||
-MULTILIB_OPTIONS = mips1/mips3/mips32 msoft-float/msingle-float
|
|
||||||
-MULTILIB_DIRNAMES = mips1 mips3 mips32 soft-float single
|
|
||||||
-MULTILIB_MATCHES = msingle-float=m4650
|
|
||||||
+# default is mips1 EB hard-float
|
|
||||||
+MULTILIB_OPTIONS = mips1/mips3/mips32 EB/EL msoft-float
|
|
||||||
+MULTILIB_DIRNAMES = mips1 mips3 mips32 eb el soft-float
|
|
||||||
+MULTILIB_MATCHES = EL=mel EB=meb
|
|
||||||
+
|
|
||||||
+MULTILIB_EXCEPTIONS =
|
|
||||||
+
|
|
||||||
+# Big endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += EL*
|
|
||||||
+MULTILIB_EXCEPTIONS += mips32/EL*
|
|
||||||
+
|
|
||||||
+# Little endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3/msoft-float
|
|
||||||
--- gcc-4.1.1.orig/gcc/Makefile.in 2006-07-16 11:18:32.000000000 +1000
|
|
||||||
+++ gcc-4.1.1/gcc/Makefile.in 2006-07-16 11:18:49.000000000 +1000
|
|
||||||
@@ -3616,9 +3616,9 @@
|
|
||||||
install-driver: installdirs xgcc$(exeext)
|
|
||||||
-rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
-$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
- -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)
|
|
||||||
+ -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
|
|
||||||
-( cd $(DESTDIR)$(bindir) && \
|
|
||||||
- $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version) )
|
|
||||||
+ $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version)$(exeext) )
|
|
||||||
-if [ -f gcc-cross$(exeext) ] ; then \
|
|
||||||
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
|
||||||
rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
|
|
||||||
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
diff -uNr gcc-4.1.1-orig/configure gcc-4.1.1/configure
|
|
||||||
--- gcc-4.1.1-orig/configure 2005-12-16 06:57:40.000000000 -0600
|
|
||||||
+++ gcc-4.1.1/configure 2006-08-11 11:10:29.000000000 -0500
|
|
||||||
@@ -1293,7 +1293,7 @@
|
|
||||||
noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
|
|
||||||
;;
|
|
||||||
bfin-*-*)
|
|
||||||
- noconfigdirs="$noconfigdirs target-libgloss gdb"
|
|
||||||
+ noconfigdirs="$noconfigdirs target-libgloss gdb target-libssp"
|
|
||||||
if test x${is_cross_compiler} != xno ; then
|
|
||||||
target_configdirs="${target_configdirs} target-bsp target-cygmon"
|
|
||||||
fi
|
|
||||||
diff -uNr gcc-4.1.1-orig/configure.in gcc-4.1.1/configure.in
|
|
||||||
--- gcc-4.1.1-orig/configure.in 2005-12-16 06:57:40.000000000 -0600
|
|
||||||
+++ gcc-4.1.1/configure.in 2006-08-11 11:09:48.000000000 -0500
|
|
||||||
@@ -501,7 +501,7 @@
|
|
||||||
noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
|
|
||||||
;;
|
|
||||||
bfin-*-*)
|
|
||||||
- noconfigdirs="$noconfigdirs target-libgloss gdb"
|
|
||||||
+ noconfigdirs="$noconfigdirs target-libgloss gdb target-libssp"
|
|
||||||
if test x${is_cross_compiler} != xno ; then
|
|
||||||
target_configdirs="${target_configdirs} target-bsp target-cygmon"
|
|
||||||
fi
|
|
||||||
diff -uNr gcc-4.1.1-orig/gcc/config/arm/rtems-elf.h gcc-4.1.1/gcc/config/arm/rtems-elf.h
|
|
||||||
--- gcc-4.1.1-orig/gcc/config/arm/rtems-elf.h 2005-11-21 17:28:29.000000000 -0600
|
|
||||||
+++ gcc-4.1.1/gcc/config/arm/rtems-elf.h 2006-08-26 17:01:42.000000000 -0500
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
@@ -1,125 +0,0 @@
|
|||||||
diff -uNr gcc-4.1.1.orig/gcc/config/arm/rtems-elf.h gcc-4.1.1/gcc/config/arm/rtems-elf.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/arm/rtems-elf.h 2005-11-22 00:28:29.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/arm/rtems-elf.h 2006-09-09 06:01:37.000000000 +0200
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/bfin/rtems.h gcc-4.1.1/gcc/config/bfin/rtems.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/bfin/rtems.h 1970-01-01 01:00:00.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/bfin/rtems.h 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -0,0 +1,29 @@
|
|
||||||
+/* Definitions for rtems targeting a bfin
|
|
||||||
+ Copyright (C) 2006 Free Software Foundation, Inc.
|
|
||||||
+ Contributed by Ralf Corsépius (ralf.corsepius@rtems.org).
|
|
||||||
+
|
|
||||||
+This file is part of GCC.
|
|
||||||
+
|
|
||||||
+GCC is free software; you can redistribute it and/or modify
|
|
||||||
+it under the terms of the GNU General Public License as published by
|
|
||||||
+the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
+any later version.
|
|
||||||
+
|
|
||||||
+GCC is distributed in the hope that it will be useful,
|
|
||||||
+but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
+GNU General Public License for more details.
|
|
||||||
+
|
|
||||||
+You should have received a copy of the GNU General Public License
|
|
||||||
+along with GCC; see the file COPYING. If not, write to
|
|
||||||
+the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
||||||
+Boston, MA 02110-1301, USA. */
|
|
||||||
+
|
|
||||||
+/* Target OS preprocessor built-ins. */
|
|
||||||
+#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
+ do \
|
|
||||||
+ { \
|
|
||||||
+ builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_assert ("system=rtems"); \
|
|
||||||
+ } \
|
|
||||||
+ while (0)
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/c4x/rtems.h gcc-4.1.1/gcc/config/c4x/rtems.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/c4x/rtems.h 2005-06-25 03:22:41.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config/c4x/rtems.h 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -24,6 +24,5 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
- builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/mips/elf.h gcc-4.1.1/gcc/config/mips/elf.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/elf.h 2005-07-09 10:46:34.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/elf.h 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -48,5 +48,3 @@
|
|
||||||
|
|
||||||
#undef ENDFILE_SPEC
|
|
||||||
#define ENDFILE_SPEC "crtend%O%s crtn%O%s"
|
|
||||||
-
|
|
||||||
-#define NO_IMPLICIT_EXTERN_C 1
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/mips/t-rtems gcc-4.1.1/gcc/config/mips/t-rtems
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/t-rtems 2005-01-15 09:38:53.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/t-rtems 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -1,5 +1,16 @@
|
|
||||||
# Custom multilibs for RTEMS
|
|
||||||
|
|
||||||
-MULTILIB_OPTIONS = mips1/mips3/mips32 msoft-float/msingle-float
|
|
||||||
-MULTILIB_DIRNAMES = mips1 mips3 mips32 soft-float single
|
|
||||||
-MULTILIB_MATCHES = msingle-float=m4650
|
|
||||||
+# default is mips1 EB hard-float
|
|
||||||
+MULTILIB_OPTIONS = mips1/mips3/mips32 EB/EL msoft-float
|
|
||||||
+MULTILIB_DIRNAMES = mips1 mips3 mips32 eb el soft-float
|
|
||||||
+MULTILIB_MATCHES = EL=mel EB=meb
|
|
||||||
+
|
|
||||||
+MULTILIB_EXCEPTIONS =
|
|
||||||
+
|
|
||||||
+# Big endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += EL*
|
|
||||||
+MULTILIB_EXCEPTIONS += mips32/EL*
|
|
||||||
+
|
|
||||||
+# Little endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3/msoft-float
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config.gcc gcc-4.1.1/gcc/config.gcc
|
|
||||||
--- gcc-4.1.1.orig/gcc/config.gcc 2006-05-09 22:02:29.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config.gcc 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -761,6 +761,11 @@
|
|
||||||
tmake_file=bfin/t-bfin-elf
|
|
||||||
use_collect2=no
|
|
||||||
;;
|
|
||||||
+bfin*-rtems*)
|
|
||||||
+ tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
|
|
||||||
+ tmake_file=bfin/t-bfin-elf
|
|
||||||
+ use_collect2=no
|
|
||||||
+ ;;
|
|
||||||
bfin*-*)
|
|
||||||
tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
|
|
||||||
tmake_file=bfin/t-bfin
|
|
||||||
@@ -1560,7 +1565,7 @@
|
|
||||||
tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
||||||
use_fixproto=yes
|
|
||||||
;;
|
|
||||||
-mips*-*-rtems*)
|
|
||||||
+mips-*-rtems*)
|
|
||||||
tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
|
|
||||||
tmake_file="mips/t-elf t-rtems mips/t-rtems"
|
|
||||||
;;
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/Makefile.in gcc-4.1.1/gcc/Makefile.in
|
|
||||||
--- gcc-4.1.1.orig/gcc/Makefile.in 2006-05-17 20:38:58.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/Makefile.in 2006-09-09 05:59:58.000000000 +0200
|
|
||||||
@@ -3616,9 +3616,9 @@
|
|
||||||
install-driver: installdirs xgcc$(exeext)
|
|
||||||
-rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
-$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
- -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)
|
|
||||||
+ -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
|
|
||||||
-( cd $(DESTDIR)$(bindir) && \
|
|
||||||
- $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version) )
|
|
||||||
+ $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version)$(exeext) )
|
|
||||||
-if [ -f gcc-cross$(exeext) ] ; then \
|
|
||||||
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
|
||||||
rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
|
|
||||||
@@ -1,140 +0,0 @@
|
|||||||
diff -uNr gcc-4.1.1.orig/gcc/config/arm/rtems-elf.h gcc-4.1.1/gcc/config/arm/rtems-elf.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/arm/rtems-elf.h 2005-11-22 00:28:29.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/arm/rtems-elf.h 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/bfin/rtems.h gcc-4.1.1/gcc/config/bfin/rtems.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/bfin/rtems.h 1970-01-01 01:00:00.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/bfin/rtems.h 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -0,0 +1,29 @@
|
|
||||||
+/* Definitions for rtems targeting a bfin
|
|
||||||
+ Copyright (C) 2006 Free Software Foundation, Inc.
|
|
||||||
+ Contributed by Ralf Corsépius (ralf.corsepius@rtems.org).
|
|
||||||
+
|
|
||||||
+This file is part of GCC.
|
|
||||||
+
|
|
||||||
+GCC is free software; you can redistribute it and/or modify
|
|
||||||
+it under the terms of the GNU General Public License as published by
|
|
||||||
+the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
+any later version.
|
|
||||||
+
|
|
||||||
+GCC is distributed in the hope that it will be useful,
|
|
||||||
+but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
+GNU General Public License for more details.
|
|
||||||
+
|
|
||||||
+You should have received a copy of the GNU General Public License
|
|
||||||
+along with GCC; see the file COPYING. If not, write to
|
|
||||||
+the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
||||||
+Boston, MA 02110-1301, USA. */
|
|
||||||
+
|
|
||||||
+/* Target OS preprocessor built-ins. */
|
|
||||||
+#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
+ do \
|
|
||||||
+ { \
|
|
||||||
+ builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_assert ("system=rtems"); \
|
|
||||||
+ } \
|
|
||||||
+ while (0)
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/c4x/rtems.h gcc-4.1.1/gcc/config/c4x/rtems.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/c4x/rtems.h 2005-06-25 03:22:41.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config/c4x/rtems.h 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -24,6 +24,5 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
- builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/mips/elf.h gcc-4.1.1/gcc/config/mips/elf.h
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/elf.h 2005-07-09 10:46:34.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/elf.h 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -48,5 +48,3 @@
|
|
||||||
|
|
||||||
#undef ENDFILE_SPEC
|
|
||||||
#define ENDFILE_SPEC "crtend%O%s crtn%O%s"
|
|
||||||
-
|
|
||||||
-#define NO_IMPLICIT_EXTERN_C 1
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config/mips/t-rtems gcc-4.1.1/gcc/config/mips/t-rtems
|
|
||||||
--- gcc-4.1.1.orig/gcc/config/mips/t-rtems 2005-01-15 09:38:53.000000000 +0100
|
|
||||||
+++ gcc-4.1.1/gcc/config/mips/t-rtems 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -1,5 +1,16 @@
|
|
||||||
# Custom multilibs for RTEMS
|
|
||||||
|
|
||||||
-MULTILIB_OPTIONS = mips1/mips3/mips32 msoft-float/msingle-float
|
|
||||||
-MULTILIB_DIRNAMES = mips1 mips3 mips32 soft-float single
|
|
||||||
-MULTILIB_MATCHES = msingle-float=m4650
|
|
||||||
+# default is mips1 EB hard-float
|
|
||||||
+MULTILIB_OPTIONS = mips1/mips3/mips32 EB/EL msoft-float
|
|
||||||
+MULTILIB_DIRNAMES = mips1 mips3 mips32 eb el soft-float
|
|
||||||
+MULTILIB_MATCHES = EL=mel EB=meb
|
|
||||||
+
|
|
||||||
+MULTILIB_EXCEPTIONS =
|
|
||||||
+
|
|
||||||
+# Big endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += EL*
|
|
||||||
+MULTILIB_EXCEPTIONS += mips32/EL*
|
|
||||||
+
|
|
||||||
+# Little endian only
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3
|
|
||||||
+MULTILIB_EXCEPTIONS += mips3/msoft-float
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/config.gcc gcc-4.1.1/gcc/config.gcc
|
|
||||||
--- gcc-4.1.1.orig/gcc/config.gcc 2006-05-09 22:02:29.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/config.gcc 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -761,6 +761,11 @@
|
|
||||||
tmake_file=bfin/t-bfin-elf
|
|
||||||
use_collect2=no
|
|
||||||
;;
|
|
||||||
+bfin*-rtems*)
|
|
||||||
+ tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
|
|
||||||
+ tmake_file=bfin/t-bfin-elf
|
|
||||||
+ use_collect2=no
|
|
||||||
+ ;;
|
|
||||||
bfin*-*)
|
|
||||||
tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
|
|
||||||
tmake_file=bfin/t-bfin
|
|
||||||
@@ -1560,7 +1565,7 @@
|
|
||||||
tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
||||||
use_fixproto=yes
|
|
||||||
;;
|
|
||||||
-mips*-*-rtems*)
|
|
||||||
+mips-*-rtems*)
|
|
||||||
tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
|
|
||||||
tmake_file="mips/t-elf t-rtems mips/t-rtems"
|
|
||||||
;;
|
|
||||||
diff -uNr gcc-4.1.1.orig/gcc/Makefile.in gcc-4.1.1/gcc/Makefile.in
|
|
||||||
--- gcc-4.1.1.orig/gcc/Makefile.in 2006-05-17 20:38:58.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/gcc/Makefile.in 2007-01-02 10:09:16.000000000 +0100
|
|
||||||
@@ -3616,9 +3616,9 @@
|
|
||||||
install-driver: installdirs xgcc$(exeext)
|
|
||||||
-rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
-$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
|
|
||||||
- -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)
|
|
||||||
+ -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
|
|
||||||
-( cd $(DESTDIR)$(bindir) && \
|
|
||||||
- $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version) )
|
|
||||||
+ $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version)$(exeext) )
|
|
||||||
-if [ -f gcc-cross$(exeext) ] ; then \
|
|
||||||
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
|
||||||
rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
|
|
||||||
diff -uNr gcc-4.1.1.orig/Makefile.in gcc-4.1.1/Makefile.in
|
|
||||||
--- gcc-4.1.1.orig/Makefile.in 2006-04-04 23:03:05.000000000 +0200
|
|
||||||
+++ gcc-4.1.1/Makefile.in 2007-01-02 10:11:36.000000000 +0100
|
|
||||||
@@ -329,9 +329,9 @@
|
|
||||||
# CFLAGS will be just -g. We want to ensure that TARGET libraries
|
|
||||||
# (which we know are built with gcc) are built with optimizations so
|
|
||||||
# prepend -O2 when setting CFLAGS_FOR_TARGET.
|
|
||||||
-CFLAGS_FOR_TARGET = -O2 $(CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET)
|
|
||||||
+CFLAGS_FOR_TARGET = $(strip -O2 $(CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET))
|
|
||||||
SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
|
|
||||||
-CXXFLAGS_FOR_TARGET = $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET)
|
|
||||||
+CXXFLAGS_FOR_TARGET = $(strip $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET))
|
|
||||||
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
|
|
||||||
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
|
|
||||||
LDFLAGS_FOR_TARGET =
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
diff -uNr gcc-4.1.2.orig/gcc/config/arm/rtems-elf.h gcc-4.1.2/gcc/config/arm/rtems-elf.h
|
|
||||||
--- gcc-4.1.2.orig/gcc/config/arm/rtems-elf.h 2005-11-22 00:28:29.000000000 +0100
|
|
||||||
+++ gcc-4.1.2/gcc/config/arm/rtems-elf.h 2007-02-16 09:28:48.000000000 +0100
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
+ builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
diff -uNr gcc-4.1.2.orig/gcc/config/c4x/rtems.h gcc-4.1.2/gcc/config/c4x/rtems.h
|
|
||||||
--- gcc-4.1.2.orig/gcc/config/c4x/rtems.h 2005-06-25 03:22:41.000000000 +0200
|
|
||||||
+++ gcc-4.1.2/gcc/config/c4x/rtems.h 2007-02-16 09:28:48.000000000 +0100
|
|
||||||
@@ -24,6 +24,5 @@
|
|
||||||
#define TARGET_OS_CPP_BUILTINS() \
|
|
||||||
do { \
|
|
||||||
builtin_define ("__rtems__"); \
|
|
||||||
- builtin_define ("__USE_INIT_FINI__"); \
|
|
||||||
builtin_assert ("system=rtems"); \
|
|
||||||
} while (0)
|
|
||||||
diff -uNr gcc-4.1.2.orig/gcc/config/mips/elf.h gcc-4.1.2/gcc/config/mips/elf.h
|
|
||||||
--- gcc-4.1.2.orig/gcc/config/mips/elf.h 2005-07-09 10:46:34.000000000 +0200
|
|
||||||
+++ gcc-4.1.2/gcc/config/mips/elf.h 2007-02-16 09:28:48.000000000 +0100
|
|
||||||
@@ -48,5 +48,3 @@
|
|
||||||
|
|
||||||
#undef ENDFILE_SPEC
|
|
||||||
#define ENDFILE_SPEC "crtend%O%s crtn%O%s"
|
|
||||||
-
|
|
||||||
-#define NO_IMPLICIT_EXTERN_C 1
|
|
||||||
diff -uNr gcc-4.1.2.orig/gcc/config.gcc gcc-4.1.2/gcc/config.gcc
|
|
||||||
--- gcc-4.1.2.orig/gcc/config.gcc 2006-10-16 01:12:23.000000000 +0200
|
|
||||||
+++ gcc-4.1.2/gcc/config.gcc 2007-02-16 09:28:48.000000000 +0100
|
|
||||||
@@ -761,6 +761,11 @@
|
|
||||||
tmake_file=bfin/t-bfin-elf
|
|
||||||
use_collect2=no
|
|
||||||
;;
|
|
||||||
+bfin*-rtems*)
|
|
||||||
+ tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
|
|
||||||
+ tmake_file=bfin/t-bfin-elf
|
|
||||||
+ use_collect2=no
|
|
||||||
+ ;;
|
|
||||||
bfin*-*)
|
|
||||||
tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
|
|
||||||
tmake_file=bfin/t-bfin
|
|
||||||
@@ -1560,7 +1565,7 @@
|
|
||||||
tm_defines="MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
||||||
use_fixproto=yes
|
|
||||||
;;
|
|
||||||
-mips*-*-rtems*)
|
|
||||||
+mips-*-rtems*)
|
|
||||||
tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
|
|
||||||
tmake_file="mips/t-elf t-rtems mips/t-rtems"
|
|
||||||
;;
|
|
||||||
diff -uNr gcc-4.1.2.orig/Makefile.in gcc-4.1.2/Makefile.in
|
|
||||||
--- gcc-4.1.2.orig/Makefile.in 2006-04-04 23:03:05.000000000 +0200
|
|
||||||
+++ gcc-4.1.2/Makefile.in 2007-02-16 09:28:48.000000000 +0100
|
|
||||||
@@ -329,9 +329,9 @@
|
|
||||||
# CFLAGS will be just -g. We want to ensure that TARGET libraries
|
|
||||||
# (which we know are built with gcc) are built with optimizations so
|
|
||||||
# prepend -O2 when setting CFLAGS_FOR_TARGET.
|
|
||||||
-CFLAGS_FOR_TARGET = -O2 $(CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET)
|
|
||||||
+CFLAGS_FOR_TARGET = $(strip -O2 $(CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET))
|
|
||||||
SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
|
|
||||||
-CXXFLAGS_FOR_TARGET = $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET)
|
|
||||||
+CXXFLAGS_FOR_TARGET = $(strip $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET))
|
|
||||||
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
|
|
||||||
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
|
|
||||||
LDFLAGS_FOR_TARGET =
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
--- gdb-6.4/sim/Makefile.in 29 Jan 2005 00:53:13 -0000 1.6
|
|
||||||
+++ gdb-6.4/sim/Makefile.in 11 Mar 2006 04:59:44 -0000
|
|
||||||
@@ -87,6 +87,7 @@
|
|
||||||
"exec_prefix=$(exec_prefix)" \
|
|
||||||
"bindir=$(bindir)" \
|
|
||||||
"mandir=$(mandir)" \
|
|
||||||
+ "libdir=$(libdir)" \
|
|
||||||
"against=$(against)" \
|
|
||||||
"AR=$(AR)" \
|
|
||||||
"AR_FLAGS=$(AR_FLAGS)" \
|
|
||||||
--- gdb-6.4/sim/erc32/exec.c 7 Mar 2005 11:09:05 -0000 1.2
|
|
||||||
+++ gdb-6.4/sim/erc32/exec.c 11 Mar 2006 04:59:45 -0000
|
|
||||||
@@ -1713,7 +1713,7 @@
|
|
||||||
sregs->fdp[rs2 | 1] = sregs->fs[rs2 & ~1];
|
|
||||||
sregs->fdp[rs2 & ~1] = sregs->fs[rs2 | 1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
@@ -1886,7 +1886,7 @@
|
|
||||||
sregs->fs[rd & ~1] = sregs->fdp[rd | 1];
|
|
||||||
sregs->fs[rd | 1] = sregs->fdp[rd & ~1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (sregs->fpstate == FP_EXC_PE) {
|
|
||||||
--- gdb-6.4/sim/mips/dv-tx3904tmr.c 16 Apr 1999 01:35:06 -0000 1.1.1.1
|
|
||||||
+++ gdb-6.4/sim/mips/dv-tx3904tmr.c 11 Mar 2006 04:59:46 -0000
|
|
||||||
@@ -675,6 +675,7 @@
|
|
||||||
|
|
||||||
case 3: /* disabled */
|
|
||||||
default:
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* update counter and report */
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/bfd/sysdep.h gdb-6.4/bfd/sysdep.h
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/bfd/sysdep.h Thu May 5 13:51:14 2005
|
|
||||||
+++ gdb-6.4/bfd/sysdep.h Fri Mar 24 11:31:32 2006
|
|
||||||
@@ -135,7 +135,7 @@
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !HAVE_DECL_STRSTR
|
|
||||||
-extern char *strstr ();
|
|
||||||
+/* extern char *strstr (); */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_FTELLO
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/gdb/config/sparc/embedded.mt gdb-6.4/gdb/config/sparc/embedded.mt
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/gdb/config/sparc/embedded.mt Wed Dec 31 18:00:00 1969
|
|
||||||
+++ gdb-6.4/gdb/config/sparc/embedded.mt Fri Apr 7 10:56:45 2006
|
|
||||||
@@ -0,0 +1,5 @@
|
|
||||||
+# Target: SPARC embedded with simulator
|
|
||||||
+TDEPFILES= sparc-tdep.o
|
|
||||||
+
|
|
||||||
+SIM_OBS = remote-sim.o
|
|
||||||
+SIM = ../sim/erc32/libsim.a
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/gdb/configure.tgt gdb-6.4/gdb/configure.tgt
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/gdb/configure.tgt Mon Aug 15 16:46:38 2005
|
|
||||||
+++ gdb-6.4/gdb/configure.tgt Fri Apr 7 10:55:37 2006
|
|
||||||
@@ -198,6 +198,7 @@
|
|
||||||
sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
|
|
||||||
gdb_target=sol2-64
|
|
||||||
;;
|
|
||||||
+sparc-*-rtems*) gdb_target=embedded ;;
|
|
||||||
sparc-*-*) gdb_target=sparc ;;
|
|
||||||
sparc64-*-*) gdb_target=sparc64 ;;
|
|
||||||
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/Makefile.in gdb-6.4/sim/Makefile.in
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/Makefile.in Fri Jan 28 18:53:13 2005
|
|
||||||
+++ gdb-6.4/sim/Makefile.in Fri Mar 24 11:32:53 2006
|
|
||||||
@@ -87,6 +87,7 @@
|
|
||||||
"exec_prefix=$(exec_prefix)" \
|
|
||||||
"bindir=$(bindir)" \
|
|
||||||
"mandir=$(mandir)" \
|
|
||||||
+ "libdir=$(libdir)" \
|
|
||||||
"against=$(against)" \
|
|
||||||
"AR=$(AR)" \
|
|
||||||
"AR_FLAGS=$(AR_FLAGS)" \
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/configure gdb-6.4/sim/configure
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/configure Tue May 17 09:11:24 2005
|
|
||||||
+++ gdb-6.4/sim/configure Wed Apr 5 12:39:21 2006
|
|
||||||
@@ -3515,6 +3515,14 @@
|
|
||||||
testsuite=yes
|
|
||||||
common=yes
|
|
||||||
;;
|
|
||||||
+ sparc-*-rtems*|sparc-*-elf*)
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+subdirs="$subdirs erc32"
|
|
||||||
+
|
|
||||||
+ testsuite=yes
|
|
||||||
+ common=yes
|
|
||||||
+ ;;
|
|
||||||
powerpc*-*-* )
|
|
||||||
|
|
||||||
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/configure.ac gdb-6.4/sim/configure.ac
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/configure.ac Tue May 17 09:11:24 2005
|
|
||||||
+++ gdb-6.4/sim/configure.ac Wed Apr 5 12:39:19 2006
|
|
||||||
@@ -109,6 +109,11 @@
|
|
||||||
testsuite=yes
|
|
||||||
common=yes
|
|
||||||
;;
|
|
||||||
+ sparc-*-rtems*|sparc-*-elf*)
|
|
||||||
+ AC_CONFIG_SUBDIRS(erc32)
|
|
||||||
+ testsuite=yes
|
|
||||||
+ common=yes
|
|
||||||
+ ;;
|
|
||||||
powerpc*-*-* )
|
|
||||||
AC_CONFIG_SUBDIRS(ppc)
|
|
||||||
common=yes
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/erc32/Makefile.in gdb-6.4/sim/erc32/Makefile.in
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/erc32/Makefile.in Tue Mar 7 09:32:49 2000
|
|
||||||
+++ gdb-6.4/sim/erc32/Makefile.in Wed Apr 5 15:15:12 2006
|
|
||||||
@@ -53,7 +53,7 @@
|
|
||||||
# Copy the files into directories where they will be run.
|
|
||||||
install-sis: installdirs
|
|
||||||
n=`echo sis | sed '$(program_transform_name)'`; \
|
|
||||||
- $(INSTALL_PROGRAM) sis$(EXEEXT) $(bindir)/$$n$(EXEEXT)
|
|
||||||
+ $(INSTALL_PROGRAM) sis$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
|
|
||||||
|
|
||||||
clean-sis:
|
|
||||||
rm -f sis end end.h
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/erc32/exec.c gdb-6.4/sim/erc32/exec.c
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/erc32/exec.c Mon Mar 7 05:09:05 2005
|
|
||||||
+++ gdb-6.4/sim/erc32/exec.c Fri Mar 24 11:32:53 2006
|
|
||||||
@@ -1713,7 +1713,7 @@
|
|
||||||
sregs->fdp[rs2 | 1] = sregs->fs[rs2 & ~1];
|
|
||||||
sregs->fdp[rs2 & ~1] = sregs->fs[rs2 | 1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
@@ -1886,7 +1886,7 @@
|
|
||||||
sregs->fs[rd & ~1] = sregs->fdp[rd | 1];
|
|
||||||
sregs->fs[rd | 1] = sregs->fdp[rd & ~1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (sregs->fpstate == FP_EXC_PE) {
|
|
||||||
diff -uNr /usr1/rtems/work-tools/original/gdb-6.4/sim/mips/dv-tx3904tmr.c gdb-6.4/sim/mips/dv-tx3904tmr.c
|
|
||||||
--- /usr1/rtems/work-tools/original/gdb-6.4/sim/mips/dv-tx3904tmr.c Thu Apr 15 20:35:06 1999
|
|
||||||
+++ gdb-6.4/sim/mips/dv-tx3904tmr.c Fri Mar 24 11:32:53 2006
|
|
||||||
@@ -675,6 +675,7 @@
|
|
||||||
|
|
||||||
case 3: /* disabled */
|
|
||||||
default:
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* update counter and report */
|
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
diff -uNr /home/joel/tools-original/gdb-6.5/bfd/sysdep.h gdb-6.5/bfd/sysdep.h
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/bfd/sysdep.h 2005-05-05 13:51:14.000000000 -0500
|
|
||||||
+++ gdb-6.5/bfd/sysdep.h 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -135,7 +135,7 @@
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !HAVE_DECL_STRSTR
|
|
||||||
-extern char *strstr ();
|
|
||||||
+/* extern char *strstr (); */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_FTELLO
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/gdb/config/sparc/embedded.mt gdb-6.5/gdb/config/sparc/embedded.mt
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/gdb/config/sparc/embedded.mt 1969-12-31 18:00:00.000000000 -0600
|
|
||||||
+++ gdb-6.5/gdb/config/sparc/embedded.mt 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -0,0 +1,5 @@
|
|
||||||
+# Target: SPARC embedded with simulator
|
|
||||||
+TDEPFILES= sparc-tdep.o
|
|
||||||
+
|
|
||||||
+SIM_OBS = remote-sim.o
|
|
||||||
+SIM = ../sim/erc32/libsim.a
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/gdb/configure.tgt gdb-6.5/gdb/configure.tgt
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/gdb/configure.tgt 2006-04-20 18:18:48.000000000 -0500
|
|
||||||
+++ gdb-6.5/gdb/configure.tgt 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -197,6 +197,7 @@
|
|
||||||
sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
|
|
||||||
gdb_target=sol2-64
|
|
||||||
;;
|
|
||||||
+sparc-*-rtems*) gdb_target=embedded ;;
|
|
||||||
sparc-*-*) gdb_target=sparc ;;
|
|
||||||
sparc64-*-*) gdb_target=sparc64 ;;
|
|
||||||
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/sim/configure gdb-6.5/sim/configure
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/sim/configure 2006-05-05 12:11:19.000000000 -0500
|
|
||||||
+++ gdb-6.5/sim/configure 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -3525,6 +3525,14 @@
|
|
||||||
testsuite=yes
|
|
||||||
common=yes
|
|
||||||
;;
|
|
||||||
+ sparc-*-rtems*|sparc-*-elf*)
|
|
||||||
+
|
|
||||||
+
|
|
||||||
+subdirs="$subdirs erc32"
|
|
||||||
+
|
|
||||||
+ testsuite=yes
|
|
||||||
+ common=yes
|
|
||||||
+ ;;
|
|
||||||
powerpc*-*-* )
|
|
||||||
|
|
||||||
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/sim/configure.ac gdb-6.5/sim/configure.ac
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/sim/configure.ac 2006-05-05 12:11:19.000000000 -0500
|
|
||||||
+++ gdb-6.5/sim/configure.ac 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -115,6 +115,11 @@
|
|
||||||
testsuite=yes
|
|
||||||
common=yes
|
|
||||||
;;
|
|
||||||
+ sparc-*-rtems*|sparc-*-elf*)
|
|
||||||
+ AC_CONFIG_SUBDIRS(erc32)
|
|
||||||
+ testsuite=yes
|
|
||||||
+ common=yes
|
|
||||||
+ ;;
|
|
||||||
powerpc*-*-* )
|
|
||||||
AC_CONFIG_SUBDIRS(ppc)
|
|
||||||
common=yes
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/sim/erc32/exec.c gdb-6.5/sim/erc32/exec.c
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/sim/erc32/exec.c 2005-03-07 05:09:05.000000000 -0600
|
|
||||||
+++ gdb-6.5/sim/erc32/exec.c 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -1713,7 +1713,7 @@
|
|
||||||
sregs->fdp[rs2 | 1] = sregs->fs[rs2 & ~1];
|
|
||||||
sregs->fdp[rs2 & ~1] = sregs->fs[rs2 | 1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
@@ -1886,7 +1886,7 @@
|
|
||||||
sregs->fs[rd & ~1] = sregs->fdp[rd | 1];
|
|
||||||
sregs->fs[rd | 1] = sregs->fdp[rd & ~1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (sregs->fpstate == FP_EXC_PE) {
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/sim/erc32/Makefile.in gdb-6.5/sim/erc32/Makefile.in
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/sim/erc32/Makefile.in 2000-03-07 09:32:49.000000000 -0600
|
|
||||||
+++ gdb-6.5/sim/erc32/Makefile.in 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -53,7 +53,7 @@
|
|
||||||
# Copy the files into directories where they will be run.
|
|
||||||
install-sis: installdirs
|
|
||||||
n=`echo sis | sed '$(program_transform_name)'`; \
|
|
||||||
- $(INSTALL_PROGRAM) sis$(EXEEXT) $(bindir)/$$n$(EXEEXT)
|
|
||||||
+ $(INSTALL_PROGRAM) sis$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
|
|
||||||
|
|
||||||
clean-sis:
|
|
||||||
rm -f sis end end.h
|
|
||||||
diff -uNr /home/joel/tools-original/gdb-6.5/sim/Makefile.in gdb-6.5/sim/Makefile.in
|
|
||||||
--- /home/joel/tools-original/gdb-6.5/sim/Makefile.in 2006-05-05 12:11:19.000000000 -0500
|
|
||||||
+++ gdb-6.5/sim/Makefile.in 2006-07-13 10:00:00.000000000 -0500
|
|
||||||
@@ -84,6 +84,7 @@
|
|
||||||
"exec_prefix=$(exec_prefix)" \
|
|
||||||
"bindir=$(bindir)" \
|
|
||||||
"mandir=$(mandir)" \
|
|
||||||
+ "libdir=$(libdir)" \
|
|
||||||
"against=$(against)" \
|
|
||||||
"AR=$(AR)" \
|
|
||||||
"AR_FLAGS=$(AR_FLAGS)" \
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
diff -uNr gdb-6.6.orig/bfd/sysdep.h gdb-6.6/bfd/sysdep.h
|
|
||||||
--- gdb-6.6.orig/bfd/sysdep.h 2005-05-05 20:51:14.000000000 +0200
|
|
||||||
+++ gdb-6.6/bfd/sysdep.h 2007-02-17 08:58:24.000000000 +0100
|
|
||||||
@@ -135,7 +135,7 @@
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !HAVE_DECL_STRSTR
|
|
||||||
-extern char *strstr ();
|
|
||||||
+/* extern char *strstr (); */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_FTELLO
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/memory-map.c gdb-6.6/gdb/memory-map.c
|
|
||||||
--- gdb-6.6.orig/gdb/memory-map.c 2006-10-05 21:42:31.000000000 +0200
|
|
||||||
+++ gdb-6.6/gdb/memory-map.c 2007-02-18 08:55:17.000000000 +0100
|
|
||||||
@@ -141,10 +141,10 @@
|
|
||||||
{
|
|
||||||
if (strcmp (data->property_name, "blocksize") == 0)
|
|
||||||
{
|
|
||||||
+ char *end = NULL;
|
|
||||||
if (!data->character_data)
|
|
||||||
throw_error (XML_PARSE_ERROR,
|
|
||||||
_("Empty content of 'property' element"));
|
|
||||||
- char *end = NULL;
|
|
||||||
data->currently_parsing->attrib.blocksize
|
|
||||||
= strtoul (data->character_data, &end, 0);
|
|
||||||
if (*end != '\0')
|
|
||||||
diff -uNr gdb-6.6.orig/sim/erc32/exec.c gdb-6.6/sim/erc32/exec.c
|
|
||||||
--- gdb-6.6.orig/sim/erc32/exec.c 2005-03-07 12:09:05.000000000 +0100
|
|
||||||
+++ gdb-6.6/sim/erc32/exec.c 2007-02-17 08:58:24.000000000 +0100
|
|
||||||
@@ -1713,7 +1713,7 @@
|
|
||||||
sregs->fdp[rs2 | 1] = sregs->fs[rs2 & ~1];
|
|
||||||
sregs->fdp[rs2 & ~1] = sregs->fs[rs2 | 1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
@@ -1886,7 +1886,7 @@
|
|
||||||
sregs->fs[rd & ~1] = sregs->fdp[rd | 1];
|
|
||||||
sregs->fs[rd | 1] = sregs->fdp[rd & ~1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (sregs->fpstate == FP_EXC_PE) {
|
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
diff -uNr gdb-6.6.orig/bfd/sysdep.h gdb-6.6/bfd/sysdep.h
|
|
||||||
--- gdb-6.6.orig/bfd/sysdep.h 2005-05-05 20:51:14.000000000 +0200
|
|
||||||
+++ gdb-6.6/bfd/sysdep.h 2007-02-22 18:39:59.000000000 +0100
|
|
||||||
@@ -135,7 +135,7 @@
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !HAVE_DECL_STRSTR
|
|
||||||
-extern char *strstr ();
|
|
||||||
+/* extern char *strstr (); */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_FTELLO
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/arch-utils.c gdb-6.6/gdb/arch-utils.c
|
|
||||||
--- gdb-6.6.orig/gdb/arch-utils.c 2006-11-10 20:20:35.000000000 +0100
|
|
||||||
+++ gdb-6.6/gdb/arch-utils.c 2007-02-22 18:41:38.000000000 +0100
|
|
||||||
@@ -349,6 +349,15 @@
|
|
||||||
};
|
|
||||||
static const char *set_endian_string;
|
|
||||||
|
|
||||||
+enum bfd_endian
|
|
||||||
+selected_byte_order (void)
|
|
||||||
+{
|
|
||||||
+ if (target_byte_order_user != BFD_ENDIAN_UNKNOWN)
|
|
||||||
+ return TARGET_BYTE_ORDER;
|
|
||||||
+ else
|
|
||||||
+ return BFD_ENDIAN_UNKNOWN;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
/* Called by ``show endian''. */
|
|
||||||
|
|
||||||
static void
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/arch-utils.h gdb-6.6/gdb/arch-utils.h
|
|
||||||
--- gdb-6.6.orig/gdb/arch-utils.h 2006-11-10 20:20:35.000000000 +0100
|
|
||||||
+++ gdb-6.6/gdb/arch-utils.h 2007-02-22 18:41:38.000000000 +0100
|
|
||||||
@@ -126,6 +126,10 @@
|
|
||||||
|
|
||||||
extern int legacy_register_sim_regno (int regnum);
|
|
||||||
|
|
||||||
+/* Return the selected byte order, or BFD_ENDIAN_UNKNOWN if no byte
|
|
||||||
+ order was explicitly selected. */
|
|
||||||
+extern enum bfd_endian selected_byte_order (void);
|
|
||||||
+
|
|
||||||
/* Return the selected architecture's name, or NULL if no architecture
|
|
||||||
was explicitly selected. */
|
|
||||||
extern const char *selected_architecture_name (void);
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/ChangeLog.rtems gdb-6.6/gdb/ChangeLog.rtems
|
|
||||||
--- gdb-6.6.orig/gdb/ChangeLog.rtems 1970-01-01 01:00:00.000000000 +0100
|
|
||||||
+++ gdb-6.6/gdb/ChangeLog.rtems 2007-02-22 18:42:05.000000000 +0100
|
|
||||||
@@ -0,0 +1,6 @@
|
|
||||||
+2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
|
|
||||||
+
|
|
||||||
+ * arch-utils.c (selected_byte_order): New.
|
|
||||||
+ * arch-utils.h (selected_byte_order): New prototype.
|
|
||||||
+ * remote-sim.c (gdbsim_open): Use selected_byte_order.
|
|
||||||
+
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/memory-map.c gdb-6.6/gdb/memory-map.c
|
|
||||||
--- gdb-6.6.orig/gdb/memory-map.c 2006-10-05 21:42:31.000000000 +0200
|
|
||||||
+++ gdb-6.6/gdb/memory-map.c 2007-02-22 18:39:59.000000000 +0100
|
|
||||||
@@ -141,10 +141,10 @@
|
|
||||||
{
|
|
||||||
if (strcmp (data->property_name, "blocksize") == 0)
|
|
||||||
{
|
|
||||||
+ char *end = NULL;
|
|
||||||
if (!data->character_data)
|
|
||||||
throw_error (XML_PARSE_ERROR,
|
|
||||||
_("Empty content of 'property' element"));
|
|
||||||
- char *end = NULL;
|
|
||||||
data->currently_parsing->attrib.blocksize
|
|
||||||
= strtoul (data->character_data, &end, 0);
|
|
||||||
if (*end != '\0')
|
|
||||||
diff -uNr gdb-6.6.orig/gdb/remote-sim.c gdb-6.6/gdb/remote-sim.c
|
|
||||||
--- gdb-6.6.orig/gdb/remote-sim.c 2006-11-10 20:20:36.000000000 +0100
|
|
||||||
+++ gdb-6.6/gdb/remote-sim.c 2007-02-22 18:41:38.000000000 +0100
|
|
||||||
@@ -504,9 +504,9 @@
|
|
||||||
+ 50) /* slack */ ;
|
|
||||||
arg_buf = (char *) alloca (len);
|
|
||||||
strcpy (arg_buf, "gdbsim"); /* 7 */
|
|
||||||
- /* Specify the byte order for the target when it is both selectable
|
|
||||||
- and explicitly specified by the user (not auto detected). */
|
|
||||||
- switch (TARGET_BYTE_ORDER)
|
|
||||||
+ /* Specify the byte order for the target when it is explicitly
|
|
||||||
+ specified by the user (not auto detected). */
|
|
||||||
+ switch (selected_byte_order ())
|
|
||||||
{
|
|
||||||
case BFD_ENDIAN_BIG:
|
|
||||||
strcat (arg_buf, " -E big");
|
|
||||||
diff -uNr gdb-6.6.orig/sim/erc32/exec.c gdb-6.6/sim/erc32/exec.c
|
|
||||||
--- gdb-6.6.orig/sim/erc32/exec.c 2005-03-07 12:09:05.000000000 +0100
|
|
||||||
+++ gdb-6.6/sim/erc32/exec.c 2007-02-22 18:40:00.000000000 +0100
|
|
||||||
@@ -1713,7 +1713,7 @@
|
|
||||||
sregs->fdp[rs2 | 1] = sregs->fs[rs2 & ~1];
|
|
||||||
sregs->fdp[rs2 & ~1] = sregs->fs[rs2 | 1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
@@ -1886,7 +1886,7 @@
|
|
||||||
sregs->fs[rd & ~1] = sregs->fdp[rd | 1];
|
|
||||||
sregs->fs[rd | 1] = sregs->fdp[rd & ~1];
|
|
||||||
default:
|
|
||||||
- ;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (sregs->fpstate == FP_EXC_PE) {
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,2 +0,0 @@
|
|||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# $Id$
|
|
||||||
|
|
||||||
SUBDIRS =
|
|
||||||
SUBDIRS += arm
|
|
||||||
SUBDIRS += avr
|
|
||||||
SUBDIRS += h8300
|
|
||||||
SUBDIRS += i386
|
|
||||||
SUBDIRS += m68k
|
|
||||||
SUBDIRS += mips
|
|
||||||
SUBDIRS += mipstx39
|
|
||||||
SUBDIRS += powerpc
|
|
||||||
SUBDIRS += sh
|
|
||||||
SUBDIRS += sparc
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
*.spec
|
|
||||||
*.spec.in
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# $Id$
|
|
||||||
|
|
||||||
TARGET = arm-rtems4.7
|
|
||||||
|
|
||||||
include $(top_srcdir)/mkspec.am
|
|
||||||
|
|
||||||
BINUTILS_VERS = 2.17
|
|
||||||
BINUTILS_PKGVERS = $(BINUTILS_VERS)
|
|
||||||
BINUTILS_RPMREL = 4
|
|
||||||
include ../binutils.am
|
|
||||||
BINUTILS_OPTS +=
|
|
||||||
|
|
||||||
GCC_VERS = 4.1.1
|
|
||||||
GCC_PKGVERS = $(GCC_VERS)
|
|
||||||
GCC_RPMREL = 7
|
|
||||||
NEWLIB_VERS = 1.15.0
|
|
||||||
include ../gcc.am
|
|
||||||
GCC_OPTS += --languages=cxx
|
|
||||||
|
|
||||||
GDB_VERS = 6.5
|
|
||||||
GDB_PKGVERS = $(GDB_VERS)
|
|
||||||
GDB_RPMREL = 2
|
|
||||||
include ../gdb.am
|
|
||||||
GDB_OPTS +=
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/pub/gnu/binutils/binutils-%{binutils_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
%if "%{binutils_version}" == "2.17"
|
|
||||||
Patch0: binutils-2.17-rtems4.7-20061021.diff
|
|
||||||
%endif
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-core-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%if "%{gcc_version}" == "4.0.3"
|
|
||||||
Patch0: gcc-core-4.0.3-rtems-20060822.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gcc_version}" == "4.1.1"
|
|
||||||
Patch0: gcc-core-4.1.1-rtems4.7-20070102.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gcc_version}" == "4.1.2"
|
|
||||||
Patch0: gcc-core-4.1.2-rtems4.7-20070216.diff
|
|
||||||
%endif
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
|
|
||||||
%if %build_cxx
|
|
||||||
Source1: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-g++-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 1}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_f95
|
|
||||||
Source2: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-fortran-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 2}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_gcj
|
|
||||||
Source3: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-java-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 3}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_gnat
|
|
||||||
Source4: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-ada-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 4}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_objc
|
|
||||||
Source5: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-objc-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 5}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_newlib
|
|
||||||
Source50: ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_version}.tar.gz
|
|
||||||
%if "%{newlib_version}" == "1.14.0"
|
|
||||||
Patch50: newlib-1.14.0-rtems4.7-20061019.diff
|
|
||||||
%endif
|
|
||||||
%if "%{newlib_version}" == "1.15.0"
|
|
||||||
Patch50: newlib-1.15.0-rtems4.7-20070208.diff
|
|
||||||
%endif
|
|
||||||
%{?_without_sources:NoSource: 50}
|
|
||||||
%endif
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/pub/gnu/gdb/gdb-%{gdb_version}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
%if "%{gdb_version}" == "6.5"
|
|
||||||
Patch0: gdb-6.5-rtems-20060713.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gdb_version}" == "6.6"
|
|
||||||
Patch0: gdb-6.6-rtems4.7-20070218.diff
|
|
||||||
%endif
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
*.spec
|
|
||||||
*.spec.in
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# $Id$
|
|
||||||
|
|
||||||
TARGET = avr-rtems4.7
|
|
||||||
|
|
||||||
include $(top_srcdir)/mkspec.am
|
|
||||||
|
|
||||||
BINUTILS_VERS = 2.17
|
|
||||||
BINUTILS_PKGVERS = $(BINUTILS_VERS)
|
|
||||||
BINUTILS_RPMREL = 4
|
|
||||||
include ../binutils.am
|
|
||||||
BINUTILS_OPTS +=
|
|
||||||
|
|
||||||
GCC_VERS = 4.0.3
|
|
||||||
GCC_PKGVERS = $(GCC_VERS)
|
|
||||||
GCC_RPMREL = 7
|
|
||||||
NEWLIB_VERS = 1.15.0
|
|
||||||
include ../gcc.am
|
|
||||||
GCC_OPTS +=
|
|
||||||
|
|
||||||
GDB_VERS = 6.5
|
|
||||||
GDB_PKGVERS = $(GDB_VERS)
|
|
||||||
GDB_RPMREL = 2
|
|
||||||
include ../gdb.am
|
|
||||||
GDB_OPTS +=
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/pub/gnu/binutils/binutils-%{binutils_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
%if "%{binutils_version}" == "2.17"
|
|
||||||
Patch0: binutils-2.17-rtems4.7-20061021.diff
|
|
||||||
%endif
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-core-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%if "%{gcc_version}" == "4.0.3"
|
|
||||||
Patch0: gcc-core-4.0.3-rtems-20060822.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gcc_version}" == "4.1.1"
|
|
||||||
Patch0: gcc-core-4.1.1-rtems4.7-20070102.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gcc_version}" == "4.1.2"
|
|
||||||
Patch0: gcc-core-4.1.2-rtems4.7-20070216.diff
|
|
||||||
%endif
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
|
|
||||||
%if %build_cxx
|
|
||||||
Source1: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-g++-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 1}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_f95
|
|
||||||
Source2: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-fortran-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 2}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_gcj
|
|
||||||
Source3: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-java-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 3}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_gnat
|
|
||||||
Source4: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-ada-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 4}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_objc
|
|
||||||
Source5: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-objc-%{gcc_pkgvers}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 5}
|
|
||||||
|
|
||||||
%endif
|
|
||||||
%if %build_newlib
|
|
||||||
Source50: ftp://sources.redhat.com/pub/newlib/newlib-%{newlib_version}.tar.gz
|
|
||||||
%if "%{newlib_version}" == "1.14.0"
|
|
||||||
Patch50: newlib-1.14.0-rtems4.7-20061019.diff
|
|
||||||
%endif
|
|
||||||
%if "%{newlib_version}" == "1.15.0"
|
|
||||||
Patch50: newlib-1.15.0-rtems4.7-20070208.diff
|
|
||||||
%endif
|
|
||||||
%{?_without_sources:NoSource: 50}
|
|
||||||
%endif
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
Source0: ftp://ftp.gnu.org/pub/gnu/gdb/gdb-%{gdb_version}.tar.bz2
|
|
||||||
%{?_without_sources:NoSource: 0}
|
|
||||||
%if "%{gdb_version}" == "6.5"
|
|
||||||
Patch0: gdb-6.5-rtems-20060713.diff
|
|
||||||
%endif
|
|
||||||
%if "%{gdb_version}" == "6.6"
|
|
||||||
Patch0: gdb-6.6-rtems4.7-20070218.diff
|
|
||||||
%endif
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
EXTRA_DIST += binutils-sources.add
|
|
||||||
|
|
||||||
BINUTILS_OPTS =
|
|
||||||
|
|
||||||
BINUTILS_SUBPACKAGES = $(top_srcdir)/common/common.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/binutils.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/prep.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/build.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/install.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/rpm-install.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/common/clean.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/target-binutils.add
|
|
||||||
BINUTILS_SUBPACKAGES += $(top_srcdir)/binutils/base-binutils.add
|
|
||||||
|
|
||||||
$(TARGET)-binutils.spec.in: $(BINUTILS_SUBPACKAGES) Makefile.am $(srcdir)/binutils-sources.add
|
|
||||||
cat $(BINUTILS_SUBPACKAGES) | sed \
|
|
||||||
-e "/[@]SOURCES[@]/r $(srcdir)/binutils-sources.add" \
|
|
||||||
-e "/[@]SOURCES[@]/d" \
|
|
||||||
-e "s/[@]BINUTILS_VERS[@]/$(BINUTILS_VERS)/g" \
|
|
||||||
-e "s/[@]BINUTILS_PKGVERS[@]/$(BINUTILS_PKGVERS)/g" \
|
|
||||||
-e "s/[@]BINUTILS_RPMREL[@]/$(BINUTILS_RPMREL)/g" \
|
|
||||||
-e "/--with-sysroot/d" \
|
|
||||||
> $(TARGET)-binutils.spec.in
|
|
||||||
CLEANFILES += $(TARGET)-binutils.spec.in
|
|
||||||
|
|
||||||
@rpmprefix@$(TARGET)-binutils.spec: $(TARGET)-binutils.spec.in
|
|
||||||
$(MKSPEC) $(TARGET)-binutils.spec.in | $(SPECSTRIP) $(BINUTILS_OPTS) > $@
|
|
||||||
CLEANFILES += @rpmprefix@$(TARGET)-binutils.spec
|
|
||||||
noinst_DATA += @rpmprefix@$(TARGET)-binutils.spec
|
|
||||||
|
|
||||||
EXTRA_DIST += $(BINUTILS_SUBPACKAGES)
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
%if "%{gcc_version}" < "4.1.0"
|
|
||||||
sed -e 's/\(version_string.* = \"[^\"]*\)/\1 (RTEMS gcc-%{gcc_version}\/newlib-%{newlib_version}-%release)/' \
|
|
||||||
gcc-%{gcc_pkgvers}/gcc/version.c > gcc-%{gcc_pkgvers}/gcc/version.c~
|
|
||||||
%else
|
|
||||||
sed -e 's/^#define VERSUFFIX.*$/#define VERSUFFIX \" (RTEMS gcc-%{gcc_version}\/newlib-%{newlib_version}-%{release})\"/' \
|
|
||||||
gcc-%{gcc_pkgvers}/gcc/version.c > gcc-%{gcc_pkgvers}/gcc/version.c~
|
|
||||||
%endif
|
|
||||||
mv gcc-%{gcc_pkgvers}/gcc/version.c~ gcc-%{gcc_pkgvers}/gcc/version.c
|
|
||||||
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
EXTRA_DIST += $(srcdir)/../gcc-prep.add
|
|
||||||
EXTRA_DIST += $(srcdir)/gcc-sources.add
|
|
||||||
|
|
||||||
GCC_OPTS = --languages=c --newlib
|
|
||||||
|
|
||||||
GCC_SUBPACKAGES = $(top_srcdir)/common/common.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/gccnewlib.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/prep.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/build.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/install.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/rpm-install.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/common/clean.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/target-gcc.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/base-gcc.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/target-c++.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/target-gfortran.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/base-gfortran.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/target-objc.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/target-newlib.add
|
|
||||||
GCC_SUBPACKAGES += $(top_srcdir)/gcc/base-newlib.add
|
|
||||||
|
|
||||||
$(TARGET)-gcc.spec.in: $(GCC_SUBPACKAGES) Makefile.am $(srcdir)/gcc-sources.add $(srcdir)/../gcc-prep.add
|
|
||||||
cat $(GCC_SUBPACKAGES) | sed \
|
|
||||||
-e "/[@]SOURCES[@]/r $(srcdir)/gcc-sources.add" \
|
|
||||||
-e "/[@]SOURCES[@]/d" \
|
|
||||||
-e "/[@]PREP[@]/r $(srcdir)/../gcc-prep.add" \
|
|
||||||
-e "/[@]PREP[@]/d" \
|
|
||||||
-e "s/[@]GCC_VERS[@]/$(GCC_VERS)/g" \
|
|
||||||
-e "s/[@]GCC_PKGVERS[@]/$(GCC_PKGVERS)/g" \
|
|
||||||
-e "s/[@]GCC_RPMREL[@]/$(GCC_RPMREL)/g" \
|
|
||||||
-e "s/[@]NEWLIB_VERS[@]/$(NEWLIB_VERS)/g" \
|
|
||||||
-e "/--with-sysroot/d" \
|
|
||||||
-e "/[@]tool_target[@]-sys-root/d" \
|
|
||||||
-e "/[@]tool_target[@]-w32api-sys-root/d" \
|
|
||||||
> $(TARGET)-gcc.spec.in
|
|
||||||
CLEANFILES += $(TARGET)-gcc.spec.in
|
|
||||||
|
|
||||||
@rpmprefix@$(TARGET)-gcc.spec: $(TARGET)-gcc.spec.in
|
|
||||||
$(MKSPEC) $(TARGET)-gcc.spec.in | $(SPECSTRIP) $(GCC_OPTS) > $@
|
|
||||||
CLEANFILES += @rpmprefix@$(TARGET)-gcc.spec
|
|
||||||
noinst_DATA += @rpmprefix@$(TARGET)-gcc.spec
|
|
||||||
|
|
||||||
EXTRA_DIST += $(GCC_SUBPACKAGES)
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
EXTRA_DIST += gdb-sources.add
|
|
||||||
|
|
||||||
GDB_OPTS =
|
|
||||||
|
|
||||||
GDB_SUBPACKAGES = $(top_srcdir)/common/common.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/gdb.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/prep.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/build.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/install.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/rpm-install.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/common/clean.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/target-gdb.add
|
|
||||||
GDB_SUBPACKAGES += $(top_srcdir)/gdb/base-gdb.add
|
|
||||||
|
|
||||||
$(TARGET)-gdb.spec.in: $(GDB_SUBPACKAGES) Makefile.am $(srcdir)/gdb-sources.add
|
|
||||||
cat $(GDB_SUBPACKAGES) | sed \
|
|
||||||
-e "/[@]SOURCES[@]/r $(srcdir)/gdb-sources.add" \
|
|
||||||
-e "/[@]SOURCES[@]/d" \
|
|
||||||
-e "s/[@]GDB_VERS[@]/$(GDB_VERS)/g" \
|
|
||||||
-e "s/[@]GDB_PKGVERS[@]/$(GDB_PKGVERS)/g" \
|
|
||||||
-e "s/[@]GDB_RPMREL[@]/$(GDB_RPMREL)/g" \
|
|
||||||
-e "/--with-sysroot/d" \
|
|
||||||
> $(TARGET)-gdb.spec.in
|
|
||||||
CLEANFILES += $(TARGET)-gdb.spec.in
|
|
||||||
|
|
||||||
@rpmprefix@$(TARGET)-gdb.spec: $(TARGET)-gdb.spec.in
|
|
||||||
$(MKSPEC) $(TARGET)-gdb.spec.in | $(SPECSTRIP) $(GDB_OPTS) > $@
|
|
||||||
CLEANFILES += @rpmprefix@$(TARGET)-gdb.spec
|
|
||||||
noinst_DATA += @rpmprefix@$(TARGET)-gdb.spec
|
|
||||||
|
|
||||||
EXTRA_DIST += $(GDB_SUBPACKAGES)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user