binutils-vl.spec 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. # rpmbuild parameters:
  2. # --with debug: Build without optimizations and without splitting the debuginfo.
  3. # --without testsuite: Do not run the testsuite. Default is to run it.
  4. # --with testsuite: Run the testsuite. Default --with debug is not to run it.
  5. %bcond_with debug
  6. %bcond_with debuginfod
  7. %bcond_without gprofng
  8. %bcond_without testsuite
  9. %bcond_without docs
  10. #---Start of Configure Options-----------------------------------------------
  11. # Create shared libraries.
  12. %define enable_shared 1
  13. # Create deterministic archives (ie ones without timestamps).
  14. # Default is off because of BZ 1195883.
  15. %define enable_deterministic_archives 0
  16. # Enable support for GCC LTO compilation.
  17. # Disable if it is necessary to work around bugs in LTO.
  18. %define enable_lto 1
  19. # Enable support for generating new dtags in the linker
  20. # Disable if it is necessary to use RPATH instead.
  21. %define enable_new_dtags 1
  22. # Enable the compression of debug sections as default behaviour of the
  23. # assembler and linker. This option is disabled for now. The assembler and
  24. # linker have command line options to override the default behaviour.
  25. %define default_compress_debug 0
  26. # Default to read-only-relocations (relro) in shared binaries.
  27. # This is enabled as a security feature.
  28. %define default_relro 1
  29. # Enable the default generation of GNU Build notes by the assembler.
  30. # This option is disabled as it has turned out to be problematic for the i686
  31. # architecture, although the exact reason has not been determined. (See
  32. # BZ 1572485). It also breaks building EFI binaries on AArch64, as these
  33. # cannot have relocations against absolute symbols.
  34. %define default_generate_notes 0
  35. # Enable thread support in the GOLD linker (if it is being built). This is
  36. # particularly important if plugins to the linker intend to use threads
  37. # themselves. See BZ 1636479 for more details. This option is made
  38. # configurable in case there is ever a need to disable thread support.
  39. %define enable_threading 1
  40. # Enable the use of separate code and data segments for all architectures,
  41. # not just x86/x86_64.
  42. %define enable_separate_code 1
  43. #----End of Configure Options------------------------------------------------
  44. %define binutils_target %{_target_platform}
  45. %define isnative 1
  46. %undefine _strict_symbol_defs_build
  47. %undefine __brp_strip_static_archive
  48. %if %{with debug}
  49. %undefine with_testsuite
  50. %endif
  51. Summary: A GNU collection of binary utilities.
  52. Summary(ja): GNU 版バイナリユーティリティ集
  53. Name: binutils
  54. Version: 2.44
  55. Release: 1%{?_dist_release}
  56. Group: programming
  57. Vendor: Project Vine
  58. Distribution: Vine Linux
  59. Packager: kenta, shaolin, inagaki
  60. License: GPLv3+
  61. URL: https://sourceware.org/binutils
  62. # Note - the Linux Kernel binutils releases are too unstable and contain
  63. # too many controversial patches so we stick with the official FSF version
  64. # instead.
  65. Source: https://ftp.gnu.org/gnu/binutils/binutils-with-gold-%{version}.tar.xz
  66. Source2: binutils-2.19.50.0.1-output-format.sed
  67. #---------------------------------------------------------------------------
  68. #Patch00: binutils-%{version}-20241118.patch
  69. # Purpose: Use /lib64 and /usr/lib64 instead of /lib and /usr/lib in the
  70. # default library search path of 64-bit targets.
  71. # Lifetime: Permanent, but it should not be. This is a bug in the libtool
  72. # sources used in both binutils and gcc, (specifically the
  73. # libtool.m4 file). These are based on a version released in 2009
  74. # (2.2.6?) rather than the latest version. (Definitely fixed in
  75. # libtool version 2.4.6).
  76. Patch01: binutils-libtool-lib64.patch
  77. # Purpose: Appends a RHEL or Fedora release string to the generic binutils
  78. # version string.
  79. # Lifetime: Permanent. This is a RHEL/Fedora specific patch.
  80. Patch02: binutils-version.patch
  81. # Purpose: Exports the demangle.h header file (associated with the libiberty
  82. # sources) with the binutils-devel rpm.
  83. # Lifetime: Permanent. This is a RHEL/Fedora specific patch.
  84. Patch03: binutils-export-demangle.h.patch
  85. # Purpose: Disables the check in the BFD library's bfd.h header file that
  86. # config.h has been included before the bfd.h header. See BZ
  87. # #845084 for more details.
  88. # Lifetime: Permanent - but it should not be. The bfd.h header defines
  89. # various types that are dependent upon configuration options, so
  90. # the order of inclusion is important.
  91. # FIXME: It would be better if the packages using the bfd.h header were
  92. # fixed so that they do include the header files in the correct
  93. # order.
  94. Patch04: binutils-no-config-h-check.patch
  95. # Purpose: Disable an x86/x86_64 optimization that moves functions from the
  96. # PLT into the GOTPLT for faster access. This optimization is
  97. # problematic for tools that want to intercept PLT entries, such
  98. # as ltrace and LD_AUDIT. See BZs 1452111 and 1333481.
  99. # Lifetime: Permanent. But it should not be.
  100. # FIXME: Replace with a configure time option.
  101. Patch05: binutils-revert-PLT-elision.patch
  102. # Purpose: Do not create PLT entries for AARCH64 IFUNC symbols referenced in
  103. # debug sections.
  104. # Lifetime: Permanent.
  105. # FIXME: Find related bug. Decide on permanency.
  106. Patch06: binutils-2.27-aarch64-ifunc.patch
  107. # Purpose: Stop the binutils from statically linking with libstdc++.
  108. # Lifetime: Permanent.
  109. Patch07: binutils-do-not-link-with-static-libstdc++.patch
  110. # Purpose: Allow OS specific sections in section groups.
  111. # Lifetime: Fixed in 2.43 (maybe)
  112. # Patch08: binutils-special-sections-in-groups.patch
  113. # Purpose: Stop gold from aborting when input sections with the same name
  114. # have different flags.
  115. # Lifetime: Fixed in 2.43 (maybe)
  116. Patch09: binutils-gold-mismatched-section-flags.patch
  117. # Purpose: Change the gold configuration script to only warn about
  118. # unsupported targets. This allows the binutils to be built with
  119. # BPF support enabled.
  120. # Lifetime: Permanent.
  121. Patch10: binutils-gold-warn-unsupported.patch
  122. # Purpose: Enable the creation of .note.gnu.property sections by the GOLD
  123. # linker for x86 binaries.
  124. # Lifetime: Permanent.
  125. Patch11: binutils-gold-i386-gnu-property-notes.patch
  126. # Purpose: Allow the binutils to be configured with any (recent) version of
  127. # autoconf.
  128. # Lifetime: Fixed in 2.44 (maybe ?)
  129. Patch12: binutils-autoconf-version.patch
  130. # Purpose: Stop libtool from inserting useless runpaths into binaries.
  131. # Lifetime: Who knows.
  132. Patch13: binutils-libtool-no-rpath.patch
  133. # Purpose: Stop an abort when using dwp to process a file with no dwo links.
  134. # Lifetime: Fixed in 2.44 (maybe)
  135. Patch15: binutils-gold-empty-dwp.patch
  136. # Purpose: Fix binutils testsuite failures.
  137. # Lifetime: Permanent, but varies with each rebase.
  138. Patch16: binutils-testsuite-fixes.patch
  139. # Purpose: Fix binutils testsuite failures for the RISCV-64 target.
  140. # Lifetime: Permanent, but varies with each rebase.
  141. Patch17: binutils-riscv-testsuite-fixes.patch
  142. # Purpose: Make the GOLD linker ignore the "-z pack-relative-relocs" command line option.
  143. # Lifetime: Fixed in 2.44 (maybe)
  144. Patch18: binutils-gold-pack-relative-relocs.patch
  145. # Purpose: Let the gold linker ignore --error-execstack and --error-rwx-segments.
  146. # Lifetime: Fixed in 2.44 (maybe)
  147. Patch19: binutils-gold-ignore-execstack-error.patch
  148. # Purpose: Fix the ar test of non-deterministic archives.
  149. # Lifetime: Fixed in 2.44
  150. Patch20: binutils-fix-ar-test.patch
  151. # Purpose: Fix a seg fault in the AArch64 linker when building u-boot.
  152. # Lifetime: Fixed in 2.45
  153. Patch21: binutils-aarch64-small-plt0.patch
  154. #---------------------------------------------------------------------------
  155. # Purpose: Suppress the x86 linker's p_align-1 tests due to kernel bug on CentOS-10
  156. # Lifetime: TEMPORARY
  157. Patch99: binutils-suppress-ld-align-tests.patch
  158. # Purpose: Disable GCS warnings when shared dependencies are not built with GCS
  159. # support
  160. # Lifetime: TEMPORARY
  161. Patch100: binutils-disable-gcs-report-dynamic.patch
  162. Patch101: binutils-disable-gcs-report-dynamic-tests.patch
  163. #---------------------------------------------------------------------------
  164. %define gold_arches %ix86 x86_64
  165. %if %{with debug}
  166. # Define this if you want to skip the strip step and preserve debug info.
  167. # Useful for testing.
  168. %define __debug_install_post : > %{_builddir}/%{?buildsubdir}/debugfiles.list
  169. %define debug_package %{nil}
  170. %endif
  171. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  172. BuildRequires: texinfo >= 4.0, gettext, flex, bison, pkgconfig(zlib)
  173. # Required for: ld-bootstrap/bootstrap.exp bootstrap with --static
  174. # It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array
  175. %if %{with testsuite}
  176. BuildRequires: dejagnu, glibc-devel, sharutils, bc, libstdc++
  177. #BuildRequires: dejagnu, zlib-static, glibc-static, sharutils
  178. %endif
  179. Conflicts: gcc-c++ < 4.0.0
  180. %ifarch ia64
  181. Obsoletes: gnupro
  182. %endif
  183. # The higher of these two numbers determines the default ld.
  184. %{!?ld_bfd_priority: %global ld_bfd_priority 50}
  185. %{!?ld_gold_priority:%global ld_gold_priority 30}
  186. %ifarch %gold_arches
  187. Requires(post): coreutils
  188. Requires(post): alternatives
  189. Requires(preun): alternatives
  190. %endif
  191. # On ARM EABI systems, we do want -gnueabi to be part of the
  192. # target triple.
  193. %ifnarch %{arm}
  194. %define _gnu %{nil}
  195. %endif
  196. %description
  197. Binutils is a collection of binary utilities, including ar (for
  198. creating, modifying and extracting from archives), as (a family of GNU
  199. assemblers), gprof (for displaying call graph profile data), ld (the
  200. GNU linker), nm (for listing symbols from object files), objcopy (for
  201. copying and translating object files), objdump (for displaying
  202. information from object files), ranlib (for generating an index for
  203. the contents of an archive), size (for listing the section sizes of an
  204. object or archive file), strings (for listing printable strings from
  205. files), strip (for discarding symbols), and addr2line (for converting
  206. addresses to file and line).
  207. %description -l ja
  208. Binutils はバイナリユーティリティ集です。 ar (アーカイブの作成、修正、
  209. 取り出しを行う)、as (GNU アセンブラファミリ)、gprof (グラフプロファイル
  210. データの表示)、ld (GNU リンカ)、nm (オブジェクトファイルのシンボル一覧を
  211. 表示)、objcopy (オブジェクトファイルのコピー,変換を行う)、
  212. objdump (オブジェクトファイルの情報を表示する)、ranlib (アーカイブの内容
  213. 一覧を作成)、size (オブジェクトやアーカイブのセクションサイズを表示)、
  214. strings (ファイルから表示可能な文字列を表示する)、strip (シンボルを
  215. 削除する)、addr2line (アドレスをファイル等に変換する) などが含まれています。
  216. %package devel
  217. Summary: BFD and opcodes static libraries and header files
  218. Group: programming
  219. Conflicts: binutils < 2.17.50.0.3-4
  220. Requires: pkgconfig(zlib)
  221. %description devel
  222. This package contains BFD and opcodes static libraries and associated
  223. header files. Only *.a libraries are included, because BFD doesn't
  224. have a stable ABI. Developers starting new projects are strongly encouraged
  225. to consider using libelf instead of BFD.
  226. %if %{with gprofng}
  227. %package gprofng
  228. Summary: Next Generating code profiling tool
  229. Provides: gprofng = %{version}-%{release}
  230. Requires: binutils >= %{version}
  231. %description gprofng
  232. Gprofng is the GNU Next Generation profiler for analyzing the performance
  233. of Linux applications. Gprofng allows you to:
  234. %endif
  235. %debug_package
  236. %prep
  237. %setup -q -n binutils-with-gold-%{version}
  238. %autopatch -p1
  239. # On ppc64 and aarch64, we might use 64KiB pages
  240. sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*ppc.c
  241. sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*aarch64.c
  242. sed -i -e '/common_pagesize/s/4 /64 /' gold/powerpc.cc
  243. sed -i -e '/pagesize/s/0x1000,/0x10000,/' gold/aarch64.cc
  244. # LTP sucks
  245. perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf*
  246. sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in}
  247. sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in}
  248. # Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible.
  249. if gcc %{optflags} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then
  250. sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in}
  251. sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in}
  252. fi
  253. # $PACKAGE is used for the gettext catalog name.
  254. sed -i -e 's/^ PACKAGE=/ PACKAGE=%{?cross}/' */configure
  255. # Undo the name change to run the testsuite.
  256. for tool in binutils gas ld
  257. do
  258. sed -i -e "2aDEJATOOL = $tool" $tool/Makefile.am
  259. sed -i -e "s/^DEJATOOL = .*/DEJATOOL = $tool/" $tool/Makefile.in
  260. done
  261. # Touch the .info files so that they are newer then the .texi files and
  262. # hence do not need to be rebuilt. This eliminates the need for makeinfo.
  263. # The -print is there just to confirm that the command is working.
  264. %if %{without docs}
  265. find . -name *.info -print -exec touch {} \;
  266. %else
  267. # If we are creating the docs, touch the texi files so that the info and
  268. # man pages will be rebuilt.
  269. find . -name *.texi -print -exec touch {} \;
  270. %endif
  271. %build
  272. echo target is %{binutils_target}
  273. %set_build_flags
  274. %if %{with debug}
  275. export CFLAGS="$CFLAGS -O0 -ggdb2 -Wno-error -D_FORTIFY_SOURCE=0"
  276. %define enable_shared 0
  277. %endif
  278. %if %{enable_new_dtags}
  279. export LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
  280. %endif
  281. CARGS=
  282. %if %{with debuginfod}
  283. CARGS="$CARGS --with-debuginfod"
  284. %endif
  285. # Extra targets to build along with the default one.
  286. #
  287. # BZ 1920373: Enable PEP support for all targets as the PERF package's
  288. # testsuite expects to be able to read PE format files ragrdless of
  289. # the host's architecture.
  290. #
  291. # Also enable the BPF target so that strip will work on BPF files.
  292. CARGS="$CARGS --enable-targets=x86_64-pep,bpf-unknown-none"
  293. %if %{default_relro}
  294. CARGS="$CARGS --enable-relro=yes"
  295. %else
  296. CARGS="$CARGS --enable-relro=no"
  297. %endif
  298. CARGS="$CARGS --enable-warn-execstack=yes"
  299. CARGS="$CARGS --enable-default-execstack=no"
  300. CARGS="$CARGS --enable-warn-rwx-segments=yes"
  301. # We could optimize the cross builds size by --enable-shared but the produced
  302. # binaries may be less convenient in the embedded environment.
  303. %configure \
  304. --quiet \
  305. --build=%{_target_platform} --host=%{_target_platform} \
  306. --target=%{binutils_target} \
  307. %ifarch %gold_arches
  308. --enable-gold=default \
  309. %else
  310. --enable-gold=no \
  311. %endif
  312. --enable-ld \
  313. %if %{isnative}
  314. --with-sysroot=/ \
  315. %else
  316. --enable-targets=%{_host} \
  317. --enable-64-bit-bfd \
  318. --with-sysroot=%{_prefix}/%{binutils_target}/sys-root \
  319. --program-prefix=%{cross} \
  320. %endif
  321. --with-system-zlib \
  322. %if %{with gprofng}
  323. --enable-gprofng=yes \
  324. %else
  325. --enable-gprofng=no \
  326. %endif
  327. %if %{enable_shared}
  328. --enable-shared \
  329. %else
  330. --disable-shared \
  331. %endif
  332. %if %{enable_deterministic_archives}
  333. --enable-deterministic-archives \
  334. %else
  335. --enable-deterministic-archives=no \
  336. %endif
  337. %if %{enable_lto}
  338. --enable-lto \
  339. %endif
  340. %if %{enable_new_dtags}
  341. --enable-new-dtags \
  342. --disable-rpath \
  343. %endif
  344. %if %{default_compress_debug}
  345. --enable-compressed-debug-sections=all \
  346. %else
  347. --enable-compressed-debug-sections=none \
  348. %endif
  349. %if %{default_generate_notes}
  350. --enable-generate-build-notes=yes \
  351. %else
  352. --enable-generate-build-notes=no \
  353. %endif
  354. %if %{enable_threading}
  355. --enable-threads=yes \
  356. %else
  357. --enable-threads=no \
  358. %endif
  359. %if %{enable_separate_code}
  360. --enable-separate-code=yes \
  361. %endif
  362. $CARGS \
  363. --enable-plugins \
  364. --disable-werror \
  365. --with-bugurl=http://mantis.vinelinux.org/ \
  366. || cat config.log
  367. %if %{with docs}
  368. make %{_smp_mflags} tooldir=%{_prefix} all
  369. make %{_smp_mflags} tooldir=%{_prefix} info
  370. %else
  371. %make_build %{_smp_mflags} tooldir=%{_prefix} MAKEINFO=true all
  372. %endif
  373. # Do not use %%check as it is run after %%install where libbfd.so is rebuilt
  374. # with -fvisibility=hidden no longer being usable in its shared form.
  375. %if %{without testsuite}
  376. echo ====================TESTSUITE DISABLED=========================
  377. %else
  378. rm -f check_error
  379. make -k check-gas check-binutils check-ld < /dev/null || echo "failed" > check_error
  380. # The GOLD testsuite always returns an error code, even if no tests fail.
  381. make -k check-gold < /dev/null || :
  382. echo ====================TESTING=========================
  383. for f in {gas/testsuite/gas,ld/ld,binutils/binutils}.sum
  384. do
  385. if [ -f $f ]; then
  386. cat $f
  387. fi
  388. done
  389. if [ -f gold/test-suite.log ]; then
  390. cat gold/test-suite.log
  391. fi
  392. if [ -f gold/testsuite/test-suite.log ]; then
  393. cat gold/testsuite/*.log
  394. fi
  395. echo ====================TESTING END=====================
  396. for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log}
  397. do
  398. ln $file binutils-%{_target_platform}-$(basename $file) || :
  399. done
  400. tar cjf binutils-%{_target_platform}.tar.xz binutils-%{_target_platform}-*.{sum,log}
  401. uuencode binutils-%{_target_platform}.tar.xz binutils-%{_target_platform}.tar.xz
  402. rm -f binutils-%{_target_platform}.tar.xz binutils-%{_target_platform}-*.{sum,log}
  403. if [ -f gold/testsuite/test-suite.log ]; then
  404. tar cjf binutils-%{_target_platform}-gold.log.tar.xz gold/testsuite/*.log
  405. uuencode binutils-%{_target_platform}-gold.log.tar.xz binutils-%{_target_platform}-gold.log.tar.xz
  406. rm -f binutils-%{_target_platform}-gold.log.tar.xz
  407. fi
  408. %endif
  409. if [ -f check_error ]; then
  410. exit 1
  411. fi
  412. %install
  413. rm -rf $RPM_BUILD_ROOT
  414. %if %{with docs}
  415. %make_install
  416. %else
  417. %make_install MAKEINFO=true
  418. %endif
  419. %if %{isnative}
  420. %if %{with docs}
  421. make prefix=%{buildroot}%{_prefix} infodir=%{buildroot}%{_infodir} install-info
  422. %endif
  423. %if %{enable_new_dtags}
  424. export LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
  425. %endif
  426. # Rebuild the static libiaries with -fPIC.
  427. # It would be nice to build the static libraries with -fno-lto so that
  428. # they can be used by programs that are built with a different version
  429. # of GCC from the one used to build the libraries, but this will trigger
  430. # warnings from annocheck.
  431. # Future: Remove it together with its header file, projects should bundle it.
  432. %make_build -s -C libiberty clean
  433. %set_build_flags
  434. %make_build -s CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libiberty
  435. # Without the hidden visibility the 3rd party shared libraries would export
  436. # the bfd non-stable ABI.
  437. %make_build -s -C bfd clean
  438. %set_build_flags
  439. %make_build -s CFLAGS="-g -fPIC $RPM_OPT_FLAGS -fvisibility=hidden" -C bfd
  440. # Rebuild libopcodes.a with -fPIC.
  441. %make_build -s -C opcodes clean
  442. %set_build_flags
  443. %make_build -s CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C opcodes
  444. %make_build -s -C libsframe clean
  445. %set_build_flags
  446. %make_build -s CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libsframe
  447. install -m 644 bfd/.libs/libbfd.a %{buildroot}%{_libdir}
  448. install -m 644 libiberty/libiberty.a %{buildroot}%{_libdir}
  449. install -m 644 include/libiberty.h %{buildroot}%{_prefix}/include
  450. install -m 644 opcodes/libopcodes.a %{buildroot}%{_libdir}
  451. install -m 644 libsframe/.libs/libsframe.a %{buildroot}%{_libdir}
  452. # Remove Windows/Novell only man pages
  453. rm -f %{buildroot}%{_mandir}/man1/{dlltool,nlmconv,windres,windmc}*
  454. %if %{without docs}
  455. rm -f %{buildroot}%{_mandir}/man1/{addr2line,ar,as,c++filt,elfedit,gprof,ld,nm,objcopy,objdump,ranlib,readelf,size,strings,strip}*
  456. rm -f %{buildroot}%{_infodir}/{as,bfd,binutils,gprof,ld}*
  457. %endif
  458. %if %{enable_shared}
  459. chmod +x %{buildroot}%{_libdir}/lib*.so*
  460. %endif
  461. # Prevent programs from linking against libbfd and libopcodes
  462. # dynamically, as they are changed far too often.
  463. rm -f %{buildroot}%{_libdir}/lib{bfd,opcodes}.so
  464. # Remove libtool files, which reference the .so libs
  465. rm -f %{buildroot}%{_libdir}/*.la
  466. # Sanity check --enable-64-bit-bfd really works.
  467. grep '^#define BFD_ARCH_SIZE 64$' %{buildroot}%{_prefix}/include/bfd.h
  468. # Fix multilib conflicts of generated values by __WORDSIZE-based expressions.
  469. %ifarch %{ix86} x86_64 ppc %{power64} s390 s390x sh3 sh4 sparc sparc64 arm aarch64 riscv64
  470. sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$~#include <bits/wordsize.h>~;}' \
  471. -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \
  472. -e 's/^#define BFD_HOST_64BIT_LONG [01] *$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \
  473. -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$/#if __WORDSIZE == 32\
  474. #define BFD_HOST_64_BIT long long\
  475. #else\
  476. #define BFD_HOST_64_BIT long\
  477. #endif/' \
  478. -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \
  479. %{buildroot}%{_prefix}/include/bfd.h
  480. %endif
  481. touch -r bfd/bfd-in2.h %{buildroot}%{_prefix}/include/bfd.h
  482. # Generate .so linker scripts for dependencies; imported from glibc/Makerules:
  483. # This fragment of linker script gives the OUTPUT_FORMAT statement
  484. # for the configuration we are building.
  485. OUTPUT_FORMAT="\
  486. /* Ensure this .so library will not be used by a link for a different format
  487. on a multi-architecture system. */
  488. $(gcc $CFLAGS $LDFLAGS -shared -x c /dev/null -o /dev/null -Wl,--verbose -v 2>&1 | sed -n -f "%{SOURCE2}")"
  489. tee %{buildroot}%{_libdir}/libbfd.so <<EOH
  490. /* GNU ld script */
  491. $OUTPUT_FORMAT
  492. /* The libz dependency is unexpected by legacy build scripts. */
  493. /* The libdl dependency is for plugin support. (BZ 889134) */
  494. INPUT ( %{_libdir}/libbfd.a %{_libdir}/libsframe.a -liberty -lz -ldl )
  495. EOH
  496. tee %{buildroot}%{_libdir}/libopcodes.so <<EOH
  497. /* GNU ld script */
  498. $OUTPUT_FORMAT
  499. INPUT ( %{_libdir}/libopcodes.a -lbfd )
  500. EOH
  501. %endif # !isnative
  502. # This one comes from gcc
  503. rm -f %{buildroot}%{_infodir}/dir
  504. rm -rf %{buildroot}%{_prefix}/%{binutils_target}
  505. %find_lang %{?cross}binutils
  506. %find_lang %{?cross}opcodes
  507. %find_lang %{?cross}bfd
  508. %find_lang %{?cross}gas
  509. %find_lang %{?cross}gprof
  510. cat %{?cross}opcodes.lang >> %{?cross}binutils.lang
  511. cat %{?cross}bfd.lang >> %{?cross}binutils.lang
  512. cat %{?cross}gas.lang >> %{?cross}binutils.lang
  513. cat %{?cross}gprof.lang >> %{?cross}binutils.lang
  514. if [ -x ld/ld-new ]; then
  515. %find_lang %{?cross}ld
  516. cat %{?cross}ld.lang >> %{?cross}binutils.lang
  517. fi
  518. if [ -x gold/ld-new ]; then
  519. %find_lang %{?cross}gold
  520. cat %{?cross}gold.lang >> %{?cross}binutils.lang
  521. fi
  522. /bin/ls %{buildroot}%{_bindir} | sed -e 's|^|%{_bindir}/|' -e '/\/ld$/d' > binutils.list
  523. %clean
  524. rm -rf $RPM_BUILD_ROOT
  525. %preun
  526. %ifarch %gold_arches
  527. if [ $1 = 0 ]; then
  528. /sbin/alternatives --remove ld %{_bindir}/ld.gold
  529. /sbin/alternatives --remove ld %{_bindir}/ld.bfd
  530. fi
  531. %endif
  532. %post
  533. %__rm -f %{_bindir}/%{?cross}ld
  534. /sbin/alternatives --install %{_bindir}/%{?cross}ld %{?cross}ld \
  535. %{_bindir}/%{?cross}ld.bfd %{ld_bfd_priority}
  536. %ifarch %gold_arches
  537. /sbin/alternatives --install %{_bindir}/%{?cross}ld %{?cross}ld \
  538. %{_bindir}/%{?cross}ld.gold %{ld_gold_priority}
  539. %endif
  540. # Do not run "alternatives --auto ld" here. Leave the setting to
  541. # however the user previously had it set. See BZ 1592069 for more details.
  542. /sbin/ldconfig
  543. exit 0
  544. %files -f binutils.lang
  545. %license COPYING COPYING3 COPYING3.LIB COPYING.LIB
  546. %defattr(-,root,root,-)
  547. %doc README
  548. %{_bindir}/%{?cross}[!l]*
  549. %exclude %{_bindir}/gp-*
  550. %exclude %{_bindir}/gprofng
  551. # %%verify(symlink) does not work for some reason, so using "owner" instead.
  552. %verify(owner) %{_bindir}/%{?cross}ld
  553. %{_bindir}/%{?cross}ld.bfd
  554. %ifarch %gold_arches
  555. %{_bindir}/%{?cross}ld.gold
  556. %endif
  557. # # Do not export any Windows tools (if they were built)
  558. # %%exclude %%{_bindir}/%%{?cross}dll*
  559. # %%exclude %%{_bindir}/%%{?cross}wind*
  560. %if %{with docs}
  561. %dir %{_mandir}/man1
  562. %{_mandir}/man1/*
  563. %exclude %{_mandir}/man1/gprofng*
  564. %if %{isnative}
  565. %{_infodir}/as.info.*
  566. %{_infodir}/binutils.info.*
  567. %{_infodir}/ld.info.*
  568. %{_infodir}/ldint.info.*
  569. %{_infodir}/bfd.info.*
  570. %{_infodir}/ctf-spec.info.*
  571. %{_infodir}/gprof.info.*
  572. %{_infodir}/sframe-spec.info.*
  573. %endif
  574. %endif
  575. %if %{enable_shared}
  576. %{_libdir}/lib*.so
  577. %{_libdir}/lib*.so.*
  578. %exclude %{_libdir}/libbfd.so
  579. %exclude %{_libdir}/libopcodes.so
  580. %exclude %{_libdir}/libctf.a
  581. %exclude %{_libdir}/libctf-nobfd.a
  582. %{_libdir}/bfd-plugins/libdep.so
  583. %exclude %{_exec_prefix}/lib/debug/%{_libdir}/bfd-plugins/libdep.so-*
  584. %endif
  585. %files devel
  586. %defattr(-,root,root)
  587. %{_prefix}/include/*
  588. %{_libdir}/lib*.a
  589. %{_libdir}/libbfd.so
  590. %{_libdir}/libopcodes.so
  591. %if %{with gprofng}
  592. %files gprofng
  593. %dir %{_docdir}/gprofng
  594. %{_docdir}/gprofng/examples.tar.gz
  595. %{_bindir}/gp-*
  596. %{_bindir}/gprofng
  597. %{_mandir}/man1/gprofng*
  598. %{_infodir}/gprofng.info.*
  599. %dir %{_libdir}/gprofng
  600. %{_libdir}/gprofng/*
  601. %dir %{_exec_prefix}/lib/debug/%{_libdir}/gprofng
  602. %{_exec_prefix}/lib/debug/%{_libdir}/gprofng/libgp*
  603. %{_sysconfdir}/gprofng.rc
  604. %endif
  605. %changelog
  606. * Sun Jun 1 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.44-1
  607. - updated to 2.44.
  608. * Mon Nov 18 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.43.1-1
  609. - updated to 2.43.1.
  610. - updated Patch00.
  611. * Mon Jul 08 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.42-2
  612. - updated Patch00.
  613. * Sat Jun 08 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.42-1
  614. - updated to 2.42.
  615. - updated Patch00.
  616. - re-imported patches from rawhide.
  617. * Thu Sep 21 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.41-1
  618. - updated to 2.41.
  619. - updated Patch00.
  620. - re-imported patches from rawhide.
  621. * Sat Sep 10 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.39-1
  622. - updated to 2.39.
  623. - updated Patch00.
  624. - re-imported patches from rawhide.
  625. * Sat Jan 29 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.37-4
  626. - updated Patch00.
  627. * Thu Dec 23 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.37-3
  628. - updated Patch00.
  629. - imported Patch2000 from upstream to fix CVE-2021-45078.
  630. * Mon Nov 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.37-2
  631. - updated Patch00.
  632. - imported Patch18-24 from rawhide.
  633. - dropped install-info scriptlets.
  634. * Wed Aug 04 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.37-1
  635. - updated to 2.37.
  636. - imported Patch00 from upstream.
  637. - re-imported patches from rawhide.
  638. * Sat Apr 10 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.36.1-2
  639. - imported Patch00 from upstream.
  640. - built with gcc-10.3.
  641. - updated Patch34.
  642. * Tue Feb 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.36.1-1
  643. - updated to 2.36.
  644. - dropped Patch10, 11 and 16.
  645. - renumbered patches.
  646. - imported Patch15-34 from rawhide.
  647. - added Patch0.
  648. - updated Patch6.
  649. * Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.34-1
  650. - updated to 2.34.
  651. - dropped Patch14-20, 22-26 and 28-29.
  652. - renumbered patches.
  653. - imported Patch16 from rawhide.
  654. * Sun Sep 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.32-1
  655. - updated to 2.32.
  656. - dropped Patch11, 13-22, 24 and 25: fixed in upstream.
  657. - renumbered patches.
  658. - imported Patch14-29 from rawhide.
  659. * Tue Jan 15 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.31.1-1
  660. - updated to 2.31.1.
  661. - dropped Patch1-9.
  662. - imported Patch01-25 from rawhide.
  663. * Sun Jun 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.26-4
  664. - rebuild with gcc-5.4.0
  665. * Tue May 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.26-3
  666. - rebuilt only.
  667. * Sun May 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.26-2
  668. - added Patch09 (binutils-2.26-symbol-version.patch).
  669. * Sat May 07 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.26-1
  670. - update to 2.26
  671. - update Patch04 (binutils-2.26-version.patch)
  672. - update Patch05 (binutils-2.26-set-long-long.patch)
  673. - remove Patch06 (binutils-2.23.2-build-id.patch)
  674. - update Patch07 (binutils-2.26-copy-osabi.patch)
  675. - update Patch08 (binutils-2.26-sec-merge-emit.patch)
  676. - add Patch1001: binutils-2.26-uio-vine.patch
  677. * Sun Dec 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.23.2-2
  678. - rebuild with VineSeed environment
  679. * Mon Nov 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.23.2-1
  680. - update to 2.23.2
  681. - remove Patch02 (binutils-2.20.51.0.12-ppc64-pie.patch)
  682. - update Patch06 (binutils-2.23.2-build-id.patch)
  683. * Tue Oct 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.22-3
  684. - rebuild with gcc-4.8.1
  685. * Sat Jan 14 2012 NAKAMURA Kenta <kenta@vinelinux.org> - 2.22-2
  686. - enabled linker plugins support
  687. * Fri Nov 25 2011 NAKAMURA Kenta <kenta@vinelinux.org> - 2.22-1
  688. - updated to 2.22 (gnu.org)
  689. - updated Patch06: build-id patch
  690. - dropped Patch09: gold-plugins patch
  691. * Sun Apr 03 2011 NAKAMURA Kenta <kenta@vinelinux.org> - 2.20.51.0.12-1
  692. - updated to 2.20.51.0.12
  693. - updated --build-id patch.
  694. - dropped redundant patches:
  695. binutils-2.20.51.0.2-envvar-revert.patch,
  696. binutils-2.20.51.0.2-add-needed.patch,
  697. binutils-2.20.51.0.2-ifunc-ld-s.patch,
  698. binutils-2.20.51.0.2-lwp.patch,
  699. binutils-2.20.51.0.2-gas-expr.patch,
  700. binutils-2.20.51.0.2-ppc-hidden-plt-relocs.patch.
  701. * Tue Apr 6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-5
  702. - rebuilt with gcc-4.4.3-4
  703. * Mon Feb 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-4
  704. - rebuilt with gcc-4.4.3-3
  705. * Mon Feb 1 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-3
  706. - add Patch12 and Patch13 for PR 10856 and 11088 respectively
  707. * Mon Jan 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.20.51.0.2-2
  708. - rebuilt with gcc-4.4.3
  709. * Sun Nov 8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.20.51.0.2-1
  710. - updated to 2.20.51.0.2
  711. * Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.18.50.0.6-1
  712. - updated to 2.18.50.0.6
  713. * Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.17.50.0.18-3
  714. - new versioning policy
  715. - rebuild with gcc-4.1.2-18
  716. * Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.18-1vl2
  717. - rebuilt with glibc-2.7-2vl3 and gcc-4.1.2-0vl17
  718. * Wed Feb 06 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.18-1vl1
  719. - updated to 2.17.50.0.18
  720. - Thu Aug 16 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.18-1
  721. - update to 2.17.50.0.18
  722. - GPLv3+
  723. - preserve .note.gnu.build-id in objcopy --only-keep-debug (#251935)
  724. - fix sparc64/alpha broken by --build-id patch (#252936)
  725. - update License tag
  726. - fix ld crash with --build-id and non-ELF output format (Alan Modra, BZ#4923)
  727. - Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-7
  728. - fix ppc32 secure PLT detection (Alan Modra)
  729. - Wed Jul 25 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-6
  730. - rebuilt to make sure even libbfd.so and libopcodes.so aren't
  731. broken by #249435
  732. - Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-5
  733. - add .note.gnu.build-id into default linker script (#249435)
  734. - Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-4
  735. - don't kill the %%{_gnu} part of target name on arm
  736. (Lennert Buytenhek, #243516)
  737. - create just one PT_NOTE segment header for all consecutive SHT_NOTE
  738. sections
  739. - Wed Jul 18 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-3
  740. - fix for ld --build-id
  741. - Sun Jul 15 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-2
  742. - ld --build-id support
  743. - Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-1
  744. - update to 2.17.50.0.17
  745. - Tue Jun 12 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.16-1
  746. - update to 2.17.50.0.16
  747. - Sat Apr 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-4
  748. - fix linking non-ELF input objects into ELF output (#235747)
  749. - Wed Mar 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-3
  750. - don't require matching ELF_OSABI for target vecs with ELFOSABI_NONE,
  751. only prefer specific osabi target vecs over the generic ones
  752. (H.J.Lu, #230964, BZ#3826)
  753. - build libbfd.so and libopcodes.so with -Bsymbolic-functions
  754. - Fri Mar 2 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-2
  755. - ignore install-info errors from scriptlets (#223678)
  756. - Thu Mar 1 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-1
  757. - update to 2.17.50.0.12
  758. - revert the misdesigned LD_SYMBOLIC{,_FUNCTIONS} env var support,
  759. only support -Bsymbolic/-Bsymbolic-functions/--dynamic-list*
  760. - Mon Jan 8 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.9-1
  761. - update to 2.17.50.0.9
  762. - fix tekhex reader
  763. - Sat Dec 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-2
  764. - fix --as-needed on ppc64 (#219629)
  765. - Sun Dec 3 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-1
  766. - update to 2.17.50.0.8
  767. - initialize frch_cfi_data (BZ#3607)
  768. - Fri Dec 1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.7-1
  769. - update to 2.17.50.0.7
  770. - .cfi_personality and .cfi_lsda directives, per subsection .cfi_*
  771. directives, better .eh_frame CIE merging
  772. - Thu Nov 9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-3
  773. - fix popcnt instruction assembly and disassembly on amd64 (#214767)
  774. * Mon Jan 07 2008 Shu KONNO <owa@bg.wakwak.com> 2.17.50.0.6-2vl5
  775. - dropt unnecessary changes of 2.17.50.0.6-2vl4
  776. * Fri Jan 04 2008 Shu KONNO <owa@bg.wakwak.com> 2.17.50.0.6-2vl4
  777. - added -fPIC to make (if x86_64)
  778. * Sat Jul 28 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.17.50.0.6-2vl3
  779. - rebuild with gcc-4.1.2-0vl12
  780. - changed devel package Group to Development/Libraries
  781. * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.6-2vl2
  782. - rebuild with gcc-4.1.2-0vl7 (expecially for ppc)
  783. * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.6-2vl1
  784. - updated to 2.17.50.0.6
  785. - Thu Dec 21 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-2.fc6
  786. - update to 2.17.50.0.6
  787. - fix for section relative linker script defined symbols in
  788. empty sections (#212032, BZ#3267)
  789. - fix handling of DW_CFA_set_loc in .eh_frame optimizations
  790. - fix R_PPC_{PLT,GOT{,_TLSGD,_TLSLD,_TPREL,_DTPREL}}16_HA relocation
  791. handling with weak undefined symbols (Alan Modra, #211094)
  792. - fix --cref (#212099)
  793. - fix --emit-relocs on ppc64 (#211991)
  794. - fix popcnt instruction assembly and disassembly on amd64 (#214767)
  795. * Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl2
  796. - rebuilt with gcc-4.1.2-0vl6 and glibc-2.5-12vl1
  797. * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl1
  798. - rebuild
  799. * Tue Apr 03 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl0
  800. - initial build for VineSeed based on FC 2.17.50.0.3-6
  801. * Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-6
  802. - fix multilib conflict in %{_prefix}/include/bfd.h
  803. * Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-5
  804. - fix efi-app-ia64 magic number (#206002, BZ#3171)
  805. * Tue Sep 5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-4
  806. - link libopcodes*.so against libbfd*.so (#202327)
  807. - split *.a and header files into binutils-devel
  808. * Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-3
  809. - on ppc and ppc64 increase default -z commonpagesize to 64K (#203001)
  810. * Fri Jul 28 2006 Alexandre Oliva <aoliva@redhat.com> 2.17.50.0.3-2
  811. - do not infer x86 arch implicitly based on instruction in the input
  812. (#200330)
  813. * Mon Jul 17 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-1
  814. - update to 2.17.50.0.3
  815. * Fri Jul 14 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-8
  816. - add support for new AMDFAM10 instructions (#198281, IT#97662)
  817. - add -march=/-mtune= gas support on x86/x86-64
  818. - x86/x86-64 nop insn improvements
  819. - fix DT_GNU_HASH shift count value computation
  820. * Tue Jul 11 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-7
  821. - add DT_GNU_HASH support (--hash-style=gnu and --hash-style=both
  822. ld options)
  823. * Thu Jun 29 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-4
  824. - fix i?86 TLS GD->IE transition in executables (#196157, BZ#2513)
  825. * Mon Jun 19 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-3
  826. - fix two places in ld that misbehaved with MALLOC_PERTURB_=N
  827. - fix .tls_common handling in relocatable linking
  828. * Mon Jun 5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-2
  829. - fix --as-needed (Alan Modra, #193689, BZ#2721)
  830. * Thu Jun 1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-1
  831. - update to 2.17.50.0.2
  832. - update from CVS to 20060601
  833. - speed up the ELF linker by caching the result of kept section check
  834. (H.J. Lu)
  835. * Tue May 9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.1-1
  836. - update to 2.17.50.0.1
  837. * Fri Mar 31 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-6
  838. - fix ld error message formatting, so that collect2 parser can
  839. parse it again for g++ -frepo (#187142)
  840. * Thu Mar 9 2006 Alexandre Oliva <aoliva@redhat.com> 2.16.91.0.6-4
  841. - fix relaxation of TLS GD to LE on PPC (#184590)
  842. * Fri Mar 3 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-3
  843. - support DW_CFA_val_{offset,offset_sf,expression} in readelf/objdump
  844. * Tue Feb 28 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-2
  845. - add MNI support on i?86/x86_64 (#183080)
  846. - support S signal frame augmentation flag in .eh_frame,
  847. add .cfi_signal_frame support (#175951, PR other/26208, BZ#300)
  848. * Tue Feb 14 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-1
  849. - update to 2.16.91.0.6
  850. - fix ppc64 --gc-sections
  851. - disassembler fixes for x86_64 cr/debug regs
  852. - fix linker search order for DT_NEEDED libs
  853. * Mon Jan 02 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.5-1
  854. - update to 2.16.91.0.5
  855. - don't error about .toc1 references to discarded sectiosn on ppc64
  856. (#175944)
  857. * Wed Dec 14 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-2
  858. - put .gnu.linkonce.d.rel.ro.* sections into relro region
  859. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  860. - rebuilt
  861. * Fri Nov 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-1
  862. - update to 2.16.91.0.3
  863. - add .weakref support (Alexandre Oliva, #115157, #165728)
  864. * Thu Aug 18 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-4
  865. - install-info also configure.info
  866. - update standards.texi from gnulib (#165530)
  867. * Tue Aug 16 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-3
  868. - update to 20050816 CVS
  869. - better fix for ld-cdtest
  870. - fix symbol version script parsing
  871. * Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-2
  872. - don't complain about relocs to discarded sections in ppc32
  873. .got2 sections (Alan Modra, PR target/17828)
  874. * Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-1
  875. - update to 2.16.91.0.2
  876. * Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-3
  877. - fix buffer overflow in readelf ia64 unwind printing code
  878. - use vsnprintf rather than vsprintf in gas diagnostics (Tavis Ormandy)
  879. - fix ld-cdtest when CFLAGS contains -fexceptions
  880. * Wed Jul 20 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-2
  881. - update to 20050720 CVS
  882. * Mon Jul 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-1
  883. - update to 2.16.91.0.1 plus 20050708 CVS
  884. * Wed Jun 15 2005 Jakub Jelinek <jakub@redhat.com> 2.16.90.0.3-1
  885. - update to 2.16.90.0.3
  886. - update to 20050615 CVS
  887. - ppc32 secure PLT support (Alan Modra)
  888. - further bfd/readelf robustification
  889. * Sat Jun 11 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-4
  890. - further bfd robustification (CAN-2005-1704, #158680)
  891. * Fri Jun 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-3
  892. - further objdump and readelf robustification (CAN-2005-1704, #158680)
  893. * Wed May 25 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-2
  894. - bfd and readelf robustification (CAN-2005-1704, #158680)
  895. * Tue Mar 29 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-1
  896. - update to 2.15.94.0.2.2
  897. - speed up walk_wild_section (Robert O'Callahan)
  898. * Mon Mar 7 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-4
  899. - rebuilt with GCC 4
  900. * Mon Feb 28 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-3
  901. - fix buffer overflows in readelf (#149506)
  902. - move c++filt to binutils from gcc-c++, conflict with gcc-c++ < 4.0 (#86333)
  903. * Thu Feb 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-1
  904. - update to 2.15.94.0.2
  905. - fix .note.GNU-stack/PT_GNU_STACK computation in linker on ppc64 (#147296)
  906. - fix stripping of binaries/libraries that have empty sections right before
  907. .dynamic section (with the same starting address; #144038)
  908. - handle AS_NEEDED (...) in linker script INPUT/GROUP
  909. * Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-11
  910. - fix a longstanding -z relro bug
  911. * Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-10
  912. - avoid unnecessary gap with -z relro showing on i686 libc.so
  913. - ppc64 --emit-relocs fix (Alan Modra)
  914. - don't crash if STT_SECTION symbol has incorrect st_shndx (e.g. SHN_ABS,
  915. as created by nasm; #142181)
  916. - don't try to make absptr LSDAs relative if they don't have relocations
  917. against them (Alan Modra, #141162)
  918. * Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5.EL4
  919. - fix ar xo (#104344)
  920. * Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5
  921. - fix --just-symbols on ppc64 (Alan Modra, #135498)
  922. * Fri Oct 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-4
  923. - fix code detecting matching linkonce and single member comdat
  924. group sections (#133078)
  925. * Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-3
  926. - revert Sep 09 change to make ppc L second argument e.g. for tlbie
  927. non-optional
  928. - fix stripping of prelinked binaries and libraries (#133734)
  929. - allow strings(1) on 32-bit arches to be used again with > 2GB
  930. files (#133555)
  931. * Mon Oct 4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-2
  932. - update to 2.15.92.0.2
  933. - change ld's ld.so.conf parser to match ldconfig's (#129340)
  934. * Mon Sep 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-9
  935. - avoid almost 1MB (sparse) gaps in the middle of -z relro
  936. libraries on x86-64 (Andreas Schwab)
  937. - fix -z relro to make sure end of PT_GNU_RELRO segment is always
  938. COMMONPAGESIZE aligned
  939. * Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-8
  940. - fix linker segfaults on input objects with SHF_LINK_ORDER with
  941. incorrect sh_link (H.J.Lu, Nick Clifton, #130198, BZ #290)
  942. * Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-7
  943. - resolve all undefined ppc64 .* syms to the function bodies through
  944. .opd, not just those used in brach instructions (Alan Modra)
  945. * Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-6
  946. - fix ppc64 ld --dotsyms (Alan Modra)
  947. * Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-5
  948. - various ppc64 make check fixes when using non-dot-syms gcc (Alan Modra)
  949. - fix --gc-sections
  950. - on ia64 create empty .gnu.linkonce.ia64unw*.* sections for
  951. .gnu.linkonce.t.* function doesn't need unwind info
  952. * Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-4
  953. - kill ppc64 dot symbols (Alan Modra)
  954. - objdump -d support for objects without dot symbols
  955. - support for overlapping ppc64 .opd entries
  956. * Mon Aug 9 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-3
  957. - fix a newly introduced linker crash on x86-64
  958. * Sun Aug 8 2004 Alan Cox <alan@redhat.com> 2.15.91.0.2-2
  959. - BuildRequire bison and macroise buildroot - from Steve Grubb
  960. * Fri Jul 30 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-1
  961. - update to 2.15.91.0.2
  962. - BuildRequire flex (#117763)
  963. * Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-7
  964. - use lib64 instead of lib directories on ia64 if %%{_lib} is
  965. set to lib64 by rpm
  966. * Sat May 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-6
  967. - fix a bug introduced in the ++/-- rejection patch
  968. from 2.15.90.0.3 (Alan Modra)
  969. * Tue May 4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-5
  970. - fix s390{,x} .{,b,p2}align handling
  971. - ppc/ppc64 testsuite fix
  972. * Mon May 3 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-4
  973. - -z relro ppc/ppc64/ia64 fixes
  974. - change x86-64 .plt symbol st_size handling to match ia32
  975. - prettify objdump -d output
  976. * Tue Apr 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-3
  977. - several SPARC fixes
  978. * Sun Apr 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-2
  979. - yet another fix for .tbss handling
  980. * Fri Apr 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-1
  981. - update to 2.15.90.0.3
  982. * Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-2
  983. - update to 20040326 CVS
  984. - fix ppc64 weak .opd symbol handling (Alan Modra, #119086)
  985. - fix .tbss handling bug introduced
  986. * Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-1
  987. - update to 2.15.90.0.1.1
  988. * Sat Feb 21 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-8
  989. - with -z now without --enable-new-dtags create DT_BIND_NOW
  990. dynamic entry in addition to DT_FLAGS_1 with DF_1_NOW bit set
  991. * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-7
  992. - fix -pie on ppc32
  993. * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-6
  994. - clear .plt sh_entsize on sparc32
  995. - put whole .got into relro area with -z now -z relro
  996. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  997. - rebuilt
  998. * Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-4
  999. - fix -pie on IA64
  1000. * Mon Jan 19 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-3
  1001. - fix testcases on s390 and s390x
  1002. * Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-2
  1003. - fix testcases on AMD64
  1004. - fix .got's sh_entsize on IA32/AMD64
  1005. - set COMMONPAGESIZE on s390/s390x
  1006. - set COMMONPAGESIZE on ppc32 (Alan Modra)
  1007. * Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-1
  1008. - update to 2.14.90.0.8
  1009. * Tue Jan 13 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-4
  1010. - fix -z relro on 64-bit arches
  1011. * Mon Jan 12 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-3
  1012. - fix some bugs in -z relro support
  1013. * Fri Jan 9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-2
  1014. - -z relro support, reordering of RW sections
  1015. * Fri Jan 9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-1
  1016. - update to 2.14.90.0.7
  1017. * Mon Nov 24 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-4
  1018. - fix assembly parsing of foo=(.-bar)/4 (Alan Modra)
  1019. - fix IA-64 assembly parsing of (p7) hint @pause
  1020. * Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-3
  1021. - don't abort on some linker warnings/errors on IA-64
  1022. * Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-2
  1023. - fix up merge2.s to use .p2align instead of .align
  1024. * Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-1
  1025. - update to 2.14.90.0.6
  1026. - speed up string merging (Lars Knoll, Michael Matz, Alan Modra)
  1027. - speed up IA-64 local symbol handling during linking
  1028. * Fri Sep 5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-7
  1029. - avoid ld -s segfaults introduced in 2.14.90.0.5-5 (Dmitry V. Levin,
  1030. #103180)
  1031. * Fri Aug 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-6
  1032. - build old demangler into libiberty.a (#102268)
  1033. - SPARC .cfi* support
  1034. * Tue Aug 5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-5
  1035. - fix orphan section placement
  1036. * Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-4
  1037. - fix ppc64 elfvsb linker tests
  1038. - some more 64-bit cleanliness fixes, give ppc64 fdesc symbols
  1039. type and size (Alan Modra)
  1040. * Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-3
  1041. - fix 64-bit unclean code in ppc-opc.c
  1042. * Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-2
  1043. - fix 64-bit unclean code in tc-ppc.c
  1044. * Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-1
  1045. - update to 2.14.90.0.5
  1046. - fix ld -r on ppc64 (Alan Modra)
  1047. * Fri Jul 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-23
  1048. - rebuilt
  1049. * Thu Jul 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-22
  1050. - fix elfNN_ia64_dynamic_symbol_p (Richard Henderson, #86661)
  1051. - don't access memory beyond what was allocated in readelf
  1052. (Richard Henderson)
  1053. * Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-21
  1054. - add .cfi_* support on ppc{,64} and s390{,x}
  1055. * Tue Jul 8 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-20
  1056. - remove lib{bfd,opcodes}.la (#98190)
  1057. * Mon Jul 7 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-19
  1058. - fix -pie support on amd64, s390, s390x and ppc64
  1059. - issue relocation overflow errors for s390/s390x -fpic code when
  1060. accessing .got slots above 4096 bytes from .got start
  1061. * Thu Jul 3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-18
  1062. - rebuilt
  1063. * Thu Jul 3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-17
  1064. - fix ia64 -pie support
  1065. - require no undefined non-weak symbols in PIEs like required for normal
  1066. binaries
  1067. * Wed Jul 2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-16
  1068. - fix readelf -d on IA-64
  1069. - build libiberty.a with -fPIC, so that it can be lined into shared
  1070. libraries
  1071. * Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-15
  1072. - rebuilt
  1073. * Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-14
  1074. - added support for Intel Prescott instructions
  1075. - fix hint@pause for ia64
  1076. - add workaround for LTP sillyness (#97934)
  1077. * Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-13
  1078. - update CFI stuff to 2003-06-18
  1079. - make sure .eh_frame is aligned to 8 bytes on 64-bit arches,
  1080. remove padding within one .eh_frame section
  1081. * Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-12
  1082. - rebuilt
  1083. * Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-11
  1084. - one more fix for the same patch
  1085. * Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-10
  1086. - fix previous patch
  1087. * Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-9
  1088. - ensure R_PPC64_{RELATIVE,ADDR64} have *r_offset == r_addend
  1089. and the other relocs have *r_offset == 0
  1090. * Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-8
  1091. - remove some unnecessary provides in ppc64 linker script
  1092. which were causing e.g. empty .ctors/.dtors section creation
  1093. * Fri Jun 6 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-7
  1094. - some CFI updates/fixes
  1095. - don't create dynamic relocations against symbols defined in PIE
  1096. exported from its .dynsym
  1097. * Wed Jun 4 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-6
  1098. - update gas to 20030604
  1099. - PT_GNU_STACK support
  1100. * Mon Jun 2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-5
  1101. - buildrequire gettext (#91838)
  1102. * Sat May 31 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-4
  1103. - fix shared libraries with >= 8192 .plt slots on ppc32
  1104. * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-3
  1105. - rebuilt
  1106. * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-2
  1107. - rename ld --dynamic option to --pic-executable or --pie
  1108. - fix ld --help output
  1109. - document --pie/--pic-executable in ld.info and ld.1
  1110. * Wed May 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-1
  1111. - update to 2.14.90.0.4-1
  1112. - gas CFI updates (Richard Henderson)
  1113. - dynamic executables (Ulrich Drepper)
  1114. * Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-2
  1115. - fix ELF visibility handling
  1116. - tidy plt entries on IA-32, ppc and ppc64
  1117. * Mon May 19 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-1
  1118. - update to 2.14.90.0.2-1
  1119. * Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-8
  1120. - fix bfd_elf_hash on 64-bit arches (Andrew Haley)
  1121. * Wed Apr 30 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-7
  1122. - rebuilt
  1123. * Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-6
  1124. - optimize DW_CFA_advance_loc4 in gas even if there is 'z' augmentation
  1125. with size 0 in FDE
  1126. * Fri Apr 11 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-5
  1127. - fix SPARC build
  1128. * Thu Apr 3 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-4
  1129. - fix ppc32 plt reference counting
  1130. - don't include %{_prefix}/%{_lib}/debug in the non-debuginfo package
  1131. (#87729)
  1132. * Mon Mar 31 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-3
  1133. - make elf64ppc target native extra on ppc and elf32ppc native extra
  1134. on ppc64.
  1135. * Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-2
  1136. - fix TLS on IA-64 with ld relaxation
  1137. * Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-1
  1138. - update to 2.13.90.0.20
  1139. * Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-9
  1140. - rebuilt
  1141. * Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-8
  1142. - don't strip binaries in %%install, so that there is non-empty
  1143. debuginfo
  1144. * Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-7
  1145. - don't optimize .eh_frame during ld -r
  1146. * Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-6
  1147. - don't clear elf_link_hash_flags in the .symver patch
  1148. - only use TC_FORCE_RELOCATION in s390's TC_FORCE_RELOCATION_SUB_SAME
  1149. (Alan Modra)
  1150. * Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-5
  1151. - fix the previous .symver change
  1152. - remove libbfd.so and libopcodes.so symlinks, so that other packages
  1153. link statically, not dynamically against libbfd and libopcodes
  1154. whose ABI is everything but stable
  1155. * Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-4
  1156. - do .symver x, x@FOO handling earlier
  1157. - support .file and .loc on s390*
  1158. * Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-3
  1159. - handle .symver x, x@FOO in ld such that relocs against x become
  1160. dynamic relocations against x@FOO (#83325)
  1161. - two PPC64 TLS patches (Alan Modra)
  1162. * Sun Feb 09 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-2
  1163. - fix SEARCH_DIR on x86_64/s390x
  1164. - fix Alpha --relax
  1165. - create DT_RELA{,SZ,ENT} on s390 even if there is just .rela.plt
  1166. and no .rela.dyn section
  1167. - support IA-32 on IA-64 (#83752)
  1168. - .eh_frame_hdr fix (Andreas Schwab)
  1169. * Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-1
  1170. - update to 2.13.90.0.18 + 20030121->20030206 CVS diff
  1171. * Tue Feb 04 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-8
  1172. - alpha TLS fixes
  1173. - use .debug_line directory table to make the section tiny bit smaller
  1174. - libtool fix from Jens Petersen
  1175. * Sun Feb 02 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-7
  1176. - sparc32 TLS
  1177. * Fri Jan 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-6
  1178. - s390{,x} TLS and two other mainframe patches
  1179. * Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-5
  1180. - fix IA-64 TLS IE in shared libs
  1181. - .{preinit,init,fini}_array compat hack from Alexandre Oliva
  1182. * Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-4
  1183. - IA-64 TLS fixes
  1184. - fix .plt sh_entsize on Alpha
  1185. - build with %%_smp_mflags
  1186. * Sat Nov 30 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-3
  1187. - fix strip on TLS binaries and libraries
  1188. * Fri Nov 29 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-2
  1189. - fix IA-64 ld bootstrap
  1190. * Thu Nov 28 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-1
  1191. - update to 2.13.90.0.16
  1192. - STT_TLS SHN_UNDEF fix
  1193. * Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-4
  1194. - pad .rodata.cstNN sections at the end if they aren't sized to multiple
  1195. of sh_entsize
  1196. - temporary patch to make .eh_frame and .gcc_except_table sections
  1197. readonly if possible (should be removed when AUTO_PLACE is implemented)
  1198. - fix .PPC.EMB.apuinfo section flags
  1199. * Wed Oct 23 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-3
  1200. - fix names and content of alpha non-alloced .rela.* sections (#76583)
  1201. - delete unpackaged files from the buildroot
  1202. * Tue Oct 15 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-2
  1203. - enable s390x resp. s390 emulation in linker too
  1204. * Mon Oct 14 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-1
  1205. - update to 2.13.90.0.10
  1206. - add a bi-arch patch for sparc/s390/x86_64
  1207. - add --enable-64-bit-bfd on sparc, s390 and ppc
  1208. * Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-3
  1209. - fix combreloc testcase
  1210. * Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-2
  1211. - fix orphan .rel and .rela section placement with -z combreloc (Alan Modra)
  1212. - skip incompatible linker scripts when searching for libraries
  1213. * Tue Oct 1 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-1
  1214. - update to 2.13.90.0.4
  1215. - x86-64 TLS support
  1216. - some IA-32 TLS fixes
  1217. - some backported patches from trunk
  1218. - include opcodes, ld, gas and bfd l10n too
  1219. * Thu Sep 19 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-3
  1220. - allow addends for IA-32 TLS @tpoff, @ntpoff and @dtpoff
  1221. - clear memory at *r_offset of dynamic relocs on PPC
  1222. - avoid ld crash if accessing non-local symbols through LE relocs
  1223. - new IA-32 TLS relocs, bugfixes and testcases
  1224. - use brl insn on IA-64 (Richard Henderson)
  1225. - fix R_IA64_PCREL21{M,F} handling (Richard Henderson)
  1226. - build in separate builddir, so that gasp tests don't fail
  1227. - include localization
  1228. * Thu Aug 8 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-2
  1229. - fix R_386_TPOFF32 addends (#70824)
  1230. * Sat Aug 3 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-1
  1231. - update to 2.13.90.0.2
  1232. - fix ld TLS assertion failure (#70084)
  1233. - fix readelf --debug-dump= handling to match man page and --help
  1234. (#68997)
  1235. - fix _GLOBAL_OFFSET_TABLE gas handling (#70241)
  1236. * Wed Jul 24 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.15-1
  1237. - update to 2.12.90.0.15
  1238. - TLS .tbss fix
  1239. - don't use rpm %%configure macro, it is broken too often (#69366)
  1240. * Thu May 30 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.9-1
  1241. - update to 2.12.90.0.9
  1242. - TLS support
  1243. - remove gasp.info from %%post/%%preun (#65400)
  1244. * Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.7-1
  1245. - update to 2.12.90.0.7
  1246. - run make check
  1247. * Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-12
  1248. - fix .hidden handling on SPARC (Richard Henderson)
  1249. - don't crash when linking -shared non-pic code with SHF_MERGE
  1250. - fix .eh_frame_hdr for DW_EH_PE_aligned
  1251. - correctly adjust DW_EH_PE_pcrel encoded personalities in CIEs
  1252. * Fri Apr 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-11
  1253. - don't emit dynamic R_SPARC_DISP* relocs against STV_HIDDEN symbols
  1254. into shared libraries
  1255. * Thu Mar 21 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-10
  1256. - don't merge IA-64 unwind info sections together during ld -r
  1257. * Mon Mar 11 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-9
  1258. - fix DATA_SEGMENT_ALIGN on ia64/alpha/sparc/sparc64
  1259. * Fri Mar 8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-8
  1260. - don't crash on SHN_UNDEF local dynsyms (Andrew MacLeod)
  1261. * Thu Mar 7 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-7
  1262. - fix bfd configury bug (Alan Modra)
  1263. * Tue Mar 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-6
  1264. - don't copy visibility when equating symbols
  1265. - fix alpha .text/.data with .previous directive bug
  1266. * Tue Mar 5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-5
  1267. - fix SHF_MERGE crash with --gc-sections (#60369)
  1268. - C++ symbol versioning patch
  1269. * Fri Feb 22 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-4
  1270. - add DW_EH_PE_absptr -> DW_EH_PE_pcrel optimization for shared libs,
  1271. if DW_EH_PE_absptr cannot be converted that way, don't build the
  1272. .eh_frame_hdr search table
  1273. * Fri Feb 15 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-3
  1274. - fix ld -N broken by last patch
  1275. * Tue Feb 12 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-2
  1276. - trade one saved runtime page for data segment (=almost always not shared)
  1277. for up to one page of disk space where possible
  1278. * Fri Feb 8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-1
  1279. - update to 2.11.93.0.2
  1280. - use %%{ix86} instead of i386 for -z combreloc default (#59086)
  1281. * Thu Jan 31 2002 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-10
  1282. - don't create SHN_UNDEF STB_WEAK symbols unless there are any relocations
  1283. against them
  1284. * Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> 2.11.92.0.12-9.1
  1285. - rebuild (fix ia64 miscompilation)
  1286. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  1287. - automated rebuild
  1288. * Fri Dec 28 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-8
  1289. - two further .eh_frame patch fixes
  1290. * Wed Dec 19 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-7
  1291. - as ld is currently not able to shrink input sections to zero size
  1292. during discard_info, build a fake minimal CIE in that case
  1293. - update elf-strtab patch to what was commited
  1294. * Mon Dec 17 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-6
  1295. - one more .eh_frame patch fix
  1296. - fix alpha .eh_frame handling
  1297. - optimize elf-strtab finalize
  1298. * Sat Dec 15 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-5
  1299. - yet another fix for the .eh_frame patch
  1300. * Fri Dec 14 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-4
  1301. - Alan Modra's patch to avoid crash if there is no dynobj
  1302. * Thu Dec 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-3
  1303. - H.J.'s patch to avoid crash if input files are not ELF
  1304. - don't crash if a SHF_MERGE for some reason could not be merged
  1305. - fix objcopy/strip to preserve SHF_MERGE sh_entsize
  1306. - optimize .eh_frame sections, add PT_GNU_EH_FRAME support
  1307. - support anonymous version tags in version script
  1308. * Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-2
  1309. - fix IA-64 SHF_MERGE handling
  1310. * Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-1
  1311. - update to 2.11.92.0.12
  1312. - optimize .dynstr and .shstrtab sections (#55524)
  1313. - fix ld.1 glitch (#55459)
  1314. - turn relocs against SHF_MERGE local symbols with zero addend
  1315. into STT_SECTION + addend
  1316. - remove man pages for programs not included (nlmconv, windres, dlltool;
  1317. #55456, #55461)
  1318. - add BuildRequires for texinfo
  1319. * Thu Oct 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-2
  1320. - duh, fix strings on bfd objects (#55084)
  1321. * Sat Oct 20 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-1
  1322. - update to 2.11.92.0.7
  1323. - remove .rel{,a}.dyn from output if it is empty
  1324. * Thu Oct 11 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-2
  1325. - fix strings patch
  1326. - use getc_unlocked in strings to speed it up by 50% on large files
  1327. * Wed Oct 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-1
  1328. - update to 2.11.92.0.5
  1329. - binutils localization (#45148)
  1330. - fix typo in REPORT_BUGS_TO (#54325)
  1331. - support files bigger than 2GB in strings (#54406)
  1332. * Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-12
  1333. - on IA-64, don't mix R_IA64_IPLTLSB relocs with non-PLT relocs in
  1334. .rela.dyn section.
  1335. * Tue Sep 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-11
  1336. - add iplt support for IA-64 (Richard Henderson)
  1337. - switch to new section flags for SHF_MERGE and SHF_STRINGS, put
  1338. in compatibility code
  1339. - "s" section flag for small data sections on IA-64 and Alpha
  1340. (Richard Henderson)
  1341. - fix sparc64 .plt[32768+] handling
  1342. - don't emit .rela.stab on sparc
  1343. * Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-10
  1344. - fix SHF_MERGE on Sparc
  1345. * Fri Aug 31 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-9
  1346. - on Alpha, copy *r_offset to R_ALPHA_RELATIVE's r_addend
  1347. * Thu Aug 30 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-8
  1348. - on IA-64, put crtend{,S}.o's .IA_64.unwind section last in
  1349. .IA_64.unwind output section (for compatibility with 7.1 eh)
  1350. * Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-7
  1351. - put RELATIVE relocs first, not last
  1352. - enable -z combreloc by default on IA-{32,64}, Alpha, Sparc*
  1353. * Thu Aug 23 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-6
  1354. - support for -z combreloc
  1355. - remove .dynamic patch, -z combreloc patch does this better
  1356. - set STT_FUNC default symbol sizes in .endp directive on IA-64
  1357. * Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-5
  1358. - fix last patch (H.J.Lu)
  1359. * Fri Jul 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-4
  1360. - fix placing of orphan sections
  1361. * Sat Jun 23 2001 Jakub Jelinek <jakub@redhat.com>
  1362. - fix SHF_MERGE support on Alpha
  1363. * Fri Jun 8 2001 Jakub Jelinek <jakub@redhat.com>
  1364. - 2.11.90.0.8
  1365. - some SHF_MERGE suport fixes
  1366. - don't build with tooldir /usrusr instead of /usr (#40937)
  1367. - reserve few .dynamic entries for prelinking
  1368. * Mon Apr 16 2001 Jakub Jelinek <jakub@redhat.com>
  1369. - 2.11.90.0.5
  1370. - SHF_MERGE support
  1371. * Tue Apr 3 2001 Jakub Jelinek <jakub@redhat.com>
  1372. - 2.11.90.0.4
  1373. - fix uleb128 support, so that CVS gcc bootstraps
  1374. - some ia64 fixes
  1375. * Mon Mar 19 2001 Jakub Jelinek <jakub@redhat.com>
  1376. - add -Bgroup support from Ulrich Drepper
  1377. * Fri Mar 9 2001 Jakub Jelinek <jakub@redhat.com>
  1378. - hack - add elf_i386_glibc21 emulation
  1379. * Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
  1380. - 2.10.91.0.2
  1381. * Fri Feb 9 2001 Jakub Jelinek <jakub@redhat.com>
  1382. - 2.10.1.0.7
  1383. - remove ExcludeArch ia64
  1384. - back out the -oformat, -omagic and -output change for now
  1385. * Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
  1386. - Prereq /sbin/install-info
  1387. * Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
  1388. - 2.10.1.0.2
  1389. * Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
  1390. - add one more alpha patch
  1391. * Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
  1392. - fix alpha visibility as problem
  1393. - add support for Ultra-III
  1394. * Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
  1395. - and one more alpha patch
  1396. * Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
  1397. - two sparc patches
  1398. * Mon Jul 24 2000 Jakub Jelinek <jakub@redhat.com>
  1399. - 2.10.0.18
  1400. * Mon Jul 10 2000 Jakub Jelinek <jakub@redhat.com>
  1401. - 2.10.0.12
  1402. * Mon Jun 26 2000 Jakub Jelinek <jakub@redhat.com>
  1403. - 2.10.0.9
  1404. * Thu Jun 15 2000 Jakub Jelinek <jakub@redhat.com>
  1405. - fix ld -r
  1406. * Mon Jun 5 2000 Jakub Jelinek <jakub@redhat.com>
  1407. - 2.9.5.0.46
  1408. - use _mandir/_infodir/_lib
  1409. * Mon May 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1410. - 2.9.5.0.41
  1411. * Wed Apr 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1412. - 2.9.5.0.34
  1413. * Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1414. - 2.9.5.0.31
  1415. * Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
  1416. - man pages are compressed
  1417. - apply kingdon's patch from #5031
  1418. * Wed Jan 19 2000 Jeff Johnson <jbj@redhat.com>
  1419. - Permit package to be built with a prefix other than /usr.
  1420. * Thu Jan 13 2000 Cristian Gafton <gafton@redhat.com>
  1421. - add pacth from hjl to fix the versioning problems in ld
  1422. * Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1423. - Add sparc patches from Jakub Jelinek <jakub@redhat.com>
  1424. - Add URL:
  1425. * Tue Dec 14 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1426. - 2.9.5.0.22
  1427. * Wed Nov 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1428. - 2.9.5.0.19
  1429. * Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1430. - 2.9.5.0.16
  1431. * Mon Sep 06 1999 Jakub Jelinek <jj@ultra.linux.cz>
  1432. - make shared non-pic libraries work on sparc with glibc 2.1.
  1433. * Fri Aug 27 1999 Jim Kingdon
  1434. - No source/spec changes, just rebuilding with egcs-1.1.2-18 because
  1435. the older egcs was miscompling gprof.
  1436. * Mon Apr 26 1999 Cristian Gafton <gafton@redhat.com>
  1437. - back out very *stupid* sparc patch done by HJLu. People, keep out of
  1438. things you don't understand.
  1439. - add alpha relax patch from rth
  1440. * Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
  1441. - version 2.9.1.0.23
  1442. - patch to make texinfo documentation compile
  1443. - auto rebuild in the new build environment (release 2)
  1444. * Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
  1445. - updated to 2.9.1.0.21
  1446. - merged with UltraPenguin
  1447. * Mon Jan 04 1999 Cristian Gafton <gafton@redhat.com>
  1448. - added ARM patch from philb
  1449. - version 2.9.1.0.19a
  1450. - added a patch to allow arm* arch to be identified as an ARM
  1451. * Thu Oct 01 1998 Cristian Gafton <gafton@redhat.com>
  1452. - updated to 2.9.1.0.14.
  1453. * Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
  1454. - updated to 2.9.1.0.13.
  1455. * Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
  1456. - updated to 2.9.1.0.12
  1457. * Thu Jul 2 1998 Jeff Johnson <jbj@redhat.com>
  1458. - updated to 2.9.1.0.7.
  1459. * Wed Jun 03 1998 Jeff Johnson <jbj@redhat.com>
  1460. - updated to 2.9.1.0.6.
  1461. * Tue Jun 02 1998 Erik Troan <ewt@redhat.com>
  1462. - added patch from rth to get right offsets for sections in relocateable
  1463. objects on sparc32
  1464. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  1465. - translations modified for de, fr, tr
  1466. * Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
  1467. - version 2.9.1.0.4 is out; even more, it is public !
  1468. * Tue May 05 1998 Jeff Johnson <jbj@redhat.com>
  1469. - updated to 2.9.1.0.3.
  1470. * Mon Apr 20 1998 Cristian Gafton <gafton@redhat.com>
  1471. - updated to 2.9.0.3
  1472. * Tue Apr 14 1998 Cristian Gafton <gafton@redhat.com>
  1473. - upgraded to 2.9.0.2
  1474. * Sun Apr 05 1998 Cristian Gafton <gafton@redhat.com>
  1475. - updated to 2.8.1.0.29 (HJ warned me that this thing is a moving target...
  1476. :-)
  1477. - "fixed" the damn make install command so that all tools get installed
  1478. * Thu Apr 02 1998 Cristian Gafton <gafton@redhat.com>
  1479. - upgraded again to 2.8.1.0.28 (at least on alpha now egcs will compile)
  1480. - added info packages handling
  1481. * Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
  1482. - upgraded to 2.8.1.0.23
  1483. * Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
  1484. - updated to 2.8.1.0.15 (required to compile the newer glibc)
  1485. - all patches are obsoleted now
  1486. * Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
  1487. - added 2.8.1.0.1 patch from hj
  1488. - added patch for alpha palcode form rth