gcc-vl.spec 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369
  1. %global DATE 20100726
  2. %global SVNREV 162526
  3. ##VINE## change 1 for building gcc from stock tarball
  4. %global stock_tarball 1
  5. %global gcc_version 4.4.5
  6. %global gcc_release 2%{?_dist_release}
  7. %global _unpackaged_files_terminate_build 0
  8. %global multilib_64_archs sparc64 ppc64 s390x x86_64
  9. ##VINE## I only have ppc32 arch machines at the moment...
  10. %global biarch_on_ppc32 0
  11. ##VINE## isable ada, java, cloop for Vine
  12. ##VINE## ifarch %{ix86} x86_64 ia64 ppc ppc64 alpha
  13. ##VINE## global build_ada 1
  14. ##VINE## else
  15. %global build_ada 0
  16. ##VINE## endif
  17. %global build_java 1
  18. %global include_gappletviewer 0
  19. ##VINE## ifarch %{sparc}
  20. %global build_cloog 0
  21. ##VINE## else
  22. ##VINE## global build_cloog 1
  23. ##VINE## endif
  24. %global build_libstdcxx_docs 1
  25. # If you don't have already a usable gcc-java and libgcj for your arch,
  26. # do on some arch which has it rpmbuild -bc --with java_tar gcc41.spec
  27. # which creates libjava-classes-%{version}-%{release}.tar.bz2
  28. # With this then on the new arch do rpmbuild -ba -v --with java_bootstrap gcc41.spec
  29. %global bootstrap_java %{?_with_java_bootstrap:%{build_java}}%{!?_with_java_bootstrap:0}
  30. %global build_java_tar %{?_with_java_tar:%{build_java}}%{!?_with_java_tar:0}
  31. %ifarch s390x
  32. %global multilib_32_arch s390
  33. %endif
  34. %ifarch sparc64
  35. %global multilib_32_arch sparcv9
  36. %endif
  37. %ifarch ppc64
  38. %global multilib_32_arch ppc
  39. %endif
  40. %ifarch x86_64
  41. %global multilib_32_arch i686
  42. %endif
  43. Summary: GNU Compiler Collection (C, C++, Objective-C, Java, ...)
  44. Summary(ja): GNU コンパイラコレクション (C, C++, Objective-C, Java, ...)
  45. Name: gcc
  46. Version: %{gcc_version}
  47. Release: %{gcc_release}
  48. # libgcc, libgfortran, libmudflap, libgomp, libstdc++ and crtstuff have
  49. # GCC Runtime Exception.
  50. License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions
  51. Group: Development/Languages
  52. %if %{stock_tarball}
  53. Source0: gcc-%{version}.tar.bz2
  54. %else
  55. # The source for this package was pulled from upstream's vcs. Use the
  56. # following commands to generate the tarball:
  57. # svn export svn://gcc.gnu.org/svn/gcc/branches/redhat/gcc-4_4-branch@%{SVNREV} gcc-%{version}-%{DATE}
  58. # tar cf - gcc-%{version}-%{DATE} | bzip2 -9 > gcc-%{version}-%{DATE}.tar.bz2
  59. Source0: gcc-%{version}-%{DATE}.tar.bz2
  60. %endif
  61. Source1: libgcc_post_upgrade.c
  62. Source2: README.libgcjwebplugin.so
  63. Source3: protoize.1
  64. URL: http://gcc.gnu.org
  65. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  66. # Need binutils with -pie support >= 2.14.90.0.4-4
  67. # Need binutils which can omit dot symbols and overlap .opd on ppc64 >= 2.15.91.0.2-4
  68. # Need binutils which handle -msecure-plt on ppc >= 2.16.91.0.2-2
  69. # Need binutils which support .weakref >= 2.16.91.0.3-1
  70. # Need binutils which support --hash-style=gnu >= 2.17.50.0.2-7
  71. # Need binutils which support mffgpr and mftgpr >= 2.17.50.0.2-8
  72. # Need binutils which support --build-id >= 2.17.50.0.17-3
  73. # Need binutils which support %gnu_unique_object >= 2.19.51.0.14
  74. # Need binutils which support .cfi_sections >= 2.19.51.0.14-33
  75. BuildRequires: binutils >= 2.19.51.0.14-33
  76. # While gcc doesn't include statically linked binaries, during testing
  77. # -static is used several times.
  78. BuildRequires: glibc-devel
  79. BuildRequires: zlib-devel, gettext, dejagnu, bison, flex, texinfo, sharutils
  80. # For VTA guality testing
  81. BuildRequires: gdb
  82. %if %{build_java}
  83. ##VINE##BuildRequires: /usr/share/java/eclipse-ecj.jar, zip, unzip
  84. BuildRequires: ecj, zip, unzip
  85. BuildRequires: fastjar
  86. %if %{bootstrap_java}
  87. Source10: libjava-classes-%{version}-%{release}.tar.bz2
  88. %else
  89. BuildRequires: gcc-java >= 4.4.3-6vl6
  90. BuildRequires: libgcj >= 4.4.3-6vl6
  91. %endif
  92. %endif
  93. # Make sure pthread.h doesn't contain __thread tokens
  94. # Make sure glibc supports stack protector
  95. # Make sure glibc supports DT_GNU_HASH
  96. BuildRequires: glibc-devel >= 2.4.90-13
  97. BuildRequires: glibc-static
  98. BuildRequires: elfutils-devel >= 0.72
  99. %ifarch x86_64
  100. BuildRequires: compat32-glibc-devel
  101. %endif
  102. %ifarch ppc ppc64 s390 s390x sparc sparcv9 alpha
  103. # Make sure glibc supports TFmode long double
  104. BuildRequires: glibc >= 2.3.90-35
  105. %endif
  106. %if %{biarch_on_ppc32}
  107. %ifarch %{multilib_64_archs} sparcv9 ppc
  108. # Ensure glibc{,-devel} is installed for both multilib arches
  109. BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so
  110. %endif
  111. %endif
  112. %if %{build_ada}
  113. # Ada requires Ada to build
  114. BuildRequires: gcc-gnat >= 3.1, libgnat >= 3.1
  115. %endif
  116. %ifarch ia64
  117. BuildRequires: libunwind >= 0.98
  118. %endif
  119. %if %{build_cloog}
  120. BuildRequires: ppl >= 0.10, ppl-devel >= 0.10, cloog-ppl >= 0.15, cloog-ppl-devel >= 0.15
  121. %endif
  122. %if %{build_libstdcxx_docs}
  123. BuildRequires: doxygen
  124. BuildRequires: graphviz
  125. %endif
  126. Requires: gcc-cpp = %{version}-%{release}
  127. # Need .eh_frame ld optimizations
  128. # Need proper visibility support
  129. # Need -pie support
  130. # Need --as-needed/--no-as-needed support
  131. # On ppc64, need omit dot symbols support and --non-overlapping-opd
  132. # Need binutils that owns /usr/bin/c++filt
  133. # Need binutils that support .weakref
  134. # Need binutils that supports --hash-style=gnu
  135. # Need binutils that support mffgpr/mftgpr
  136. # Need binutils that support --build-id
  137. # Need binutils that support %gnu_unique_object
  138. # Need binutils that support .cfi_sections
  139. Requires: binutils >= 2.19.51.0.14-33
  140. # Make sure gdb will understand DW_FORM_strp
  141. Conflicts: gdb < 5.1-2
  142. Requires: glibc-devel >= 2.2.90-12
  143. %ifarch ppc ppc64 s390 s390x sparc sparcv9 alpha
  144. # Make sure glibc supports TFmode long double
  145. Requires: glibc >= 2.3.90-35
  146. %endif
  147. Requires: libgcc >= %{version}-%{release}
  148. Requires: libgomp = %{version}-%{release}
  149. %if !%{build_ada}
  150. Obsoletes: gcc-gnat < %{version}-%{release}
  151. Obsoletes: libgnat < %{version}-%{release}
  152. %endif
  153. %if %{build_cloog}
  154. Requires: cloog-ppl >= 0.15
  155. %endif
  156. ##VINE##Obsoletes: gcc3
  157. Obsoletes: egcs
  158. %ifarch sparc
  159. Obsoletes: gcc-sparc32
  160. Obsoletes: gcc-c++-sparc32
  161. %endif
  162. %ifarch ppc
  163. Obsoletes: gcc-ppc32
  164. Obsoletes: gcc-c++-ppc32
  165. %endif
  166. Obsoletes: gcc-chill
  167. %ifarch sparc sparc64
  168. Obsoletes: egcs64
  169. %endif
  170. Obsoletes: gcc34
  171. Obsoletes: gcc35
  172. Obsoletes: gcc4
  173. Provides: gcc4 = %{version}-%{release}
  174. Requires(post): /sbin/update-alternatives
  175. Requires(postun): /sbin/update-alternatives
  176. AutoReq: true
  177. Patch0: gcc44-hack.patch
  178. Patch1: gcc44-build-id.patch
  179. Patch2: gcc44-c++-builtin-redecl.patch
  180. Patch3: gcc44-ia64-libunwind.patch
  181. Patch4: gcc44-java-nomulti.patch
  182. Patch5: gcc44-ppc32-retaddr.patch
  183. Patch6: gcc44-pr33763.patch
  184. Patch7: gcc44-rh330771.patch
  185. Patch8: gcc44-i386-libgomp.patch
  186. Patch9: gcc44-sparc-config-detection.patch
  187. Patch10: gcc44-libgomp-omp_h-multilib.patch
  188. Patch11: gcc44-libtool-no-rpath.patch
  189. Patch12: gcc44-cloog-dl.patch
  190. Patch13: gcc44-unwind-debug-hook.patch
  191. Patch14: gcc445-pr38757.patch
  192. Patch15: gcc44-libstdc++-docs.patch
  193. Patch16: gcc445-ppc64-aixdesc.patch
  194. Patch17: gcc44-no-add-needed.patch
  195. Patch18: gcc445-pr44542.patch
  196. Patch19: gcc44-rh610785.patch
  197. Patch20: gcc44-rh533181.patch
  198. # On ARM EABI systems, we do want -gnueabi to be part of the
  199. # target triple.
  200. %ifnarch %{arm}
  201. %global _gnu %{nil}
  202. %endif
  203. %ifarch sparcv9
  204. %global gcc_target_platform sparc64-%{_vendor}-%{_target_os}
  205. %endif
  206. %ifarch ppc
  207. %if %{biarch_on_ppc32}
  208. %global gcc_target_platform ppc64-%{_vendor}-%{_target_os}
  209. %else
  210. %global gcc_target_platform %{_target_platform}
  211. %endif
  212. %endif
  213. %ifnarch sparcv9 ppc
  214. %global gcc_target_platform %{_target_platform}
  215. %endif
  216. ################################################# gcc
  217. %description
  218. The gcc package contains the GNU Compiler Collection version %{version}.
  219. You'll need this package in order to compile C code.
  220. %description -l ja
  221. gcc パッケージには、GNU Compiler Collection バージョン %{version} が
  222. 含まれています。C のソースコードをコンパイルするにはこのパッケージが
  223. 必要となります。
  224. ################################################# libgcc
  225. %package -n libgcc
  226. Summary: GCC version %{version} shared support library
  227. Summary(ja): GCC バージョン %{version} 共有サポートライブラリ
  228. Group: System Environment/Libraries
  229. Autoreq: false
  230. %description -n libgcc
  231. This package contains GCC shared support library which is needed
  232. e.g. for exception handling support.
  233. %description -n libgcc -l ja
  234. このパッケージには GCC 共有サポートライブラリが含まれます。
  235. これは例えば例外ハンドリングサポートに必要です。
  236. ################################################# c++
  237. %package c++
  238. Summary: C++ support for GCC
  239. Summary(ja): GNU コンパイラ集 - C++ サポート
  240. Group: Development/Languages
  241. Requires: gcc = %{version}-%{release}
  242. Requires: libstdc++ = %{version}-%{release}
  243. Requires: libstdc++-devel = %{version}-%{release}
  244. ##VINE##Obsoletes: gcc3-c++
  245. Obsoletes: gcc34-c++
  246. Obsoletes: gcc35-c++
  247. Obsoletes: gcc4-c++
  248. Provides: gcc4-c++ = %{version}-%{release}
  249. Requires(post): /sbin/update-alternatives
  250. Requires(postun): /sbin/update-alternatives
  251. Autoreq: true
  252. %description c++
  253. This package adds C++ support to the GNU Compiler Collection.
  254. It includes support for most of the current C++ specification,
  255. including templates and exception handling.
  256. %description c++ -l ja
  257. このパッケージは GNU Compiler Collection に C++ サポートを追加します。
  258. テンプレートと例外ハンドリングサポートを含む、現在の C++ 仕様の多くを
  259. サポートします。
  260. ################################################# libstdc++
  261. %package -n libstdc++
  262. Summary: GNU Standard C++ Library
  263. Summary(ja): GNU 標準 C++ ライブラリ
  264. Group: System Environment/Libraries
  265. ##VINE##Obsoletes: libstdc++3
  266. Obsoletes: libstdc++34
  267. Provides: libstdc++34 = %{version}-%{release}
  268. Autoreq: true
  269. %description -n libstdc++
  270. The libstdc++ package contains a rewritten standard compliant GCC Standard
  271. C++ Library.
  272. %description -n libstdc++ -l ja
  273. libstdc++ パッケージには、標準準拠に書き直された
  274. GCC 標準 C++ ライブラリが収録されています。
  275. ################################################# libstdc++-devel
  276. %package -n libstdc++-devel
  277. Summary: Header files and libraries for C++ development
  278. Summary(ja): C++ 開発用ヘッダ/ライブラリ
  279. Group: Development/Libraries
  280. Requires: libstdc++ = %{version}-%{release}
  281. Requires: %{_prefix}/%{_lib}/libstdc++.so.6
  282. ##VINE##Obsoletes: libstdc++3-devel
  283. Obsoletes: libstdc++34-devel
  284. Provides: libstdc++34-devel = %{version}-%{release}
  285. Autoreq: true
  286. %description -n libstdc++-devel
  287. This is the GNU implementation of the standard C++ libraries. This
  288. package includes the header files and libraries needed for C++
  289. development. This includes rewritten implementation of STL.
  290. %description -n libstdc++-devel
  291. これは標準 C++ ライブラリの GNU 実装です。
  292. このパッケージには C++ 開発に必要なヘッダファイルとライブラリが
  293. 収録されています。これには STL の実装も含まれます。
  294. ################################################# libstdc++-devel
  295. %package -n libstdc++-docs
  296. Summary: Documentation for the GNU standard C++ library
  297. Summary(ja): GNU 標準 C++ ライブラリのドキュメント
  298. Group: Development/Documentation
  299. Autoreq: true
  300. %description -n libstdc++-docs
  301. Manual, doxygen generated API information and Frequently Asked Questions
  302. for the GNU standard C++ library.
  303. ################################################# objc
  304. %package objc
  305. Summary: Objective-C support for GCC
  306. Summary(ja): GNU コンパイラ集 - Objective C サポート
  307. Group: Development/Languages
  308. Requires: gcc = %{version}-%{release}
  309. Requires: libobjc = %{version}-%{release}
  310. ##VINE##Obsoletes: gcc3-objc
  311. Autoreq: true
  312. %description objc
  313. gcc-objc provides Objective-C support for the GCC.
  314. Mainly used on systems running NeXTSTEP, Objective-C is an
  315. object-oriented derivative of the C language.
  316. %description objc -l ja
  317. gcc-objc パッケージは GCC に Objective-C サポートを追加します。
  318. Objective-C は C 言語から派生したオブジェクト指向言語で、
  319. 主に NeXTSTEP システムで使われてきました。
  320. ################################################# objc++
  321. %package objc++
  322. Summary: Objective-C++ support for GCC
  323. Summary(ja): GNU コンパイラ集 - Objective C++ サポート
  324. Group: Development/Languages
  325. Requires: gcc-c++ = %{version}-%{release}
  326. Requires: gcc-objc = %{version}-%{release}
  327. Autoreq: true
  328. %description objc++
  329. gcc-objc++ package provides Objective-C++ support for the GCC.
  330. %description objc++ -l ja
  331. gcc-objc++ パッケージは GCC に Objective-C++ サポートを追加します。
  332. ################################################# libobjc
  333. %package -n libobjc
  334. Summary: Objective-C runtime
  335. Summary(ja): Objective C ランタイムライブラリ
  336. Group: System Environment/Libraries
  337. Autoreq: true
  338. %description -n libobjc
  339. This package contains Objective-C shared library which is needed to run
  340. Objective-C dynamically linked programs.
  341. %description -n libobjc -l ja
  342. このパッケージには Objective-C 共有ライブラリが収められています。
  343. これは Objective-C にダイナミックリンクされたプログラムの実行に必要と
  344. なります。
  345. ################################################# gfortran
  346. %package gfortran
  347. Summary: Fortran support
  348. Summary(ja): GNU コンパイラ集 - Fortran サポート
  349. Group: Development/Languages
  350. Requires: gcc = %{version}-%{release}
  351. Requires: libgfortran = %{version}-%{release}
  352. BuildRequires: gmp-devel >= 4.2.2-3vl2
  353. BuildRequires: mpfr-devel >= 2.2.1
  354. ##VINE##Obsoletes: gcc3-g77
  355. ##VINE##Obsoletes: gcc-g77
  356. Obsoletes: gcc4-gfortran
  357. Requires(post): /sbin/update-alternatives
  358. Requires(postun): /sbin/update-alternatives
  359. Autoreq: true
  360. %description gfortran
  361. The gcc-gfortran package provides support for compiling Fortran
  362. programs with the GNU Compiler Collection.
  363. %description gfortran -l ja
  364. gcc-gfortran パッケージは GNU Compiler Collection に
  365. Fortran プログラムをコンパイルする機能を追加するものです。
  366. ################################################# libgfortran
  367. %package -n libgfortran
  368. Summary: Fortran runtime
  369. Summary(ja): Fortran ランタイム
  370. Group: System Environment/Libraries
  371. ##VINE##Obsoletes: libf2c
  372. Autoreq: true
  373. %description -n libgfortran
  374. This package contains Fortran shared library which is needed to run
  375. Fortran 95 dynamically linked programs.
  376. %description -n libgfortran -l ja
  377. このパッケージには Fortran 共有ライブラリが収められています。
  378. これは Fortran にダイナミックリンクされたプログラムの実行に
  379. 必要となります。
  380. ################################################# libgomp
  381. %package -n libgomp
  382. Summary: GCC OpenMP v3.0 shared support library
  383. Summary(ja): GCC OpenMP v3.0 共有ライブラリ
  384. Group: System Environment/Libraries
  385. %description -n libgomp
  386. This package contains GCC shared support library which is needed
  387. for OpenMP v3.0 support.
  388. %description -n libgomp -l ja
  389. このパッケージには OpenMP v3.0 をサポートする GCC 共有ライブラリが
  390. 収められています。
  391. ################################################# libmudflap
  392. %package -n libmudflap
  393. Summary: GCC mudflap shared support library
  394. Summary(ja): GCC mudflap 共有ライブラリ
  395. Group: System Environment/Libraries
  396. %description -n libmudflap
  397. This package contains GCC shared support library which is needed
  398. for mudflap support.
  399. %description -n libmudflap -l ja
  400. このパッケージには mudflap をサポートする GCC 共有ライブラリが
  401. 収められています。
  402. ################################################# libmudflap-devel
  403. %package -n libmudflap-devel
  404. Summary: GCC mudflap support
  405. Summary(ja): GCC mudflap サポート
  406. Group: Development/Libraries
  407. Requires: libmudflap = %{version}-%{release}
  408. Requires: gcc = %{version}-%{release}
  409. %description -n libmudflap-devel
  410. This package contains headers and static libraries for building
  411. mudflap-instrumented programs.
  412. To instrument a non-threaded program, add -fmudflap
  413. option to GCC and when linking add -lmudflap, for threaded programs
  414. also add -fmudflapth and -lmudflapth.
  415. ################################################# java
  416. %package java
  417. Summary: Java support for GCC
  418. Summary(ja): GNU コンパイラ集 - Java サポート
  419. Group: Development/Languages
  420. Requires: gcc = %{version}-%{release}
  421. Requires: libgcj = %{version}-%{release}
  422. Requires: libgcj-devel = %{version}-%{release}
  423. #Requires: /usr/share/java/eclipse-ecj.jar
  424. Requires: ecj
  425. Obsoletes: gcc34-java
  426. Obsoletes: gcc35-java
  427. Obsoletes: gcc4-java
  428. Provides: gcc4-java
  429. Autoreq: true
  430. Requires(post): /sbin/update-alternatives
  431. Requires(postun): /sbin/update-alternatives
  432. %description java
  433. This package adds support for compiling Java(tm) programs and
  434. bytecode into native code.
  435. %description java -l ja
  436. このパッケージは Java(tm) のプログラムやバイトコードを
  437. ネイティブコードにコンパイルする機能を追加するものです。
  438. ################################################# libgcj
  439. %package -n libgcj
  440. Summary: Java runtime library for gcc
  441. Summary(ja): GNU コンパイラ集 - Java ランタイムライブラリ
  442. Group: System Environment/Libraries
  443. Requires: zip >= 2.1
  444. Requires: gtk2 >= 2.4.0
  445. Requires: glib2 >= 2.4.0
  446. Requires: libart_lgpl >= 2.1.0
  447. %if %{build_java}
  448. BuildRequires: gtk2-devel >= 2.4.0
  449. BuildRequires: glib2-devel >= 2.4.0
  450. %if %{include_gappletviewer}
  451. BuildRequires: gecko-devel
  452. %endif
  453. BuildRequires: libart_lgpl-devel >= 2.1.0
  454. BuildRequires: alsa-lib-devel
  455. BuildRequires: libXtst-devel
  456. BuildRequires: libXt-devel
  457. %endif
  458. Obsoletes: gcc-libgcj
  459. ##VINE##Obsoletes: libgcj3
  460. Obsoletes: libgcj34
  461. Obsoletes: libgcj4
  462. Provides: libgcj4
  463. Autoreq: true
  464. %description -n libgcj
  465. The Java(tm) runtime library. You will need this package to run your Java
  466. programs compiled using the Java compiler from GNU Compiler Collection (gcj).
  467. Java(tm) ランタイムライブラリです。
  468. このパッケージは GNU Compiler Collection の Java コンパイラ (gcj) を
  469. 使ってコンパイルされたプログラムを実行するのに必要となります。
  470. ################################################# libgcj-devel
  471. %package -n libgcj-devel
  472. Summary: Libraries for Java development using GCC
  473. Summary(ja): GNU コンパイラ集 - GCC 向け Java 開発用ライブラリ
  474. Group: Development/Languages
  475. Requires: libgcj = %{version}-%{release}
  476. Requires: zlib-devel
  477. Requires: gawk
  478. Obsoletes: libgcj34-devel
  479. Obsoletes: libgcj4-devel
  480. Provides: libgcj4-devel
  481. Autoreq: false
  482. Autoprov: false
  483. %description -n libgcj-devel
  484. The Java(tm) static libraries and C header files. You will need this
  485. package to compile your Java programs using the GCC Java compiler (gcj).
  486. %description -n libgcj-devel -l ja
  487. Java(tm) スタティックライブラリと C ヘッダファイルです。
  488. GCC Java コンパイラ (gcj) を使って Java プログラムをコンパイルする際に
  489. このパッケージをインストールする必要があります。
  490. ################################################# libgcj-src
  491. %package -n libgcj-src
  492. Summary: Java library sources from GCC4 preview
  493. Group: System Environment/Libraries
  494. Requires: libgcj = %{version}-%{release}
  495. Obsoletes: libgcj4-src
  496. Provides: libgcj4-src
  497. Autoreq: true
  498. %description -n libgcj-src
  499. The Java(tm) runtime library sources for use in Eclipse.
  500. ################################################# cpp
  501. %package cpp
  502. Summary: The C Preprocessor.
  503. Summary(ja): C プリプロセッサ
  504. Group: Development/Languages
  505. Provides: cpp = %{version}-%{release}
  506. Autoreq: true
  507. Requires(post): /sbin/update-alternatives
  508. Requires(postun): /sbin/update-alternatives
  509. %description cpp
  510. Cpp is the GNU C-Compatible Compiler Preprocessor.
  511. Cpp is a macro processor which is used automatically
  512. by the C compiler to transform your program before actual
  513. compilation. It is called a macro processor because it allows
  514. you to define macros, abbreviations for longer
  515. constructs.
  516. The C preprocessor provides four separate functionalities: the
  517. inclusion of header files (files of declarations that can be
  518. substituted into your program); macro expansion (you can define macros,
  519. and the C preprocessor will replace the macros with their definitions
  520. throughout the program); conditional compilation (using special
  521. preprocessing directives, you can include or exclude parts of the
  522. program according to various conditions); and line control (if you use
  523. a program to combine or rearrange source files into an intermediate
  524. file which is then compiled, you can use line control to inform the
  525. compiler about where each source line originated).
  526. You should install this package if you are a C programmer and you use
  527. macros.
  528. ################################################# gnat
  529. %package gnat
  530. Summary: Ada 95 support for GCC
  531. Summary(ja): GNU コンパイラ集 - Ada 95 サポート
  532. Group: Development/Languages
  533. Requires: gcc = %{version}-%{release}
  534. Requires: libgnat = %{version}-%{release}
  535. Obsoletes: gnat-devel, gcc3-gnat
  536. Autoreq: true
  537. Requires(post): /sbin/update-alternatives
  538. Requires(postun): /sbin/update-alternatives
  539. %description gnat
  540. GNAT is a GNU Ada 95 front-end to GCC. This package includes development tools,
  541. the documents and Ada 95 compiler.
  542. %description gnat -l ja
  543. GNAT は GCC 用の GNU Ada 95 フロントエンドです。
  544. このパッケージには Ada 95 コンパイラ、開発ツール、ドキュメントが
  545. 収録されています。
  546. ################################################# libgnat
  547. %package -n libgnat
  548. Summary: GNU Ada 95 runtime shared libraries
  549. Summary(ja): GNU コンパイラ集 - Ada 95 ランタイム共有ライブラリ
  550. Group: System Environment/Libraries
  551. Obsoletes: gnat libgnat3
  552. Autoreq: true
  553. %description -n libgnat
  554. GNAT is a GNU Ada 95 front-end to GCC. This package includes shared libraries,
  555. which are required to run programs compiled with the GNAT.
  556. %description -n libgnat -l ja
  557. GNAT は GCC 用の GNU Ada 95 フロントエンドです。
  558. このパッケージには GNAT でコンパイルされたプログラムを実行するために必要な
  559. 共有ライブラリが収録されています。
  560. ################################################# tools
  561. %package tools
  562. Summary: Coverage tool and prototizing tool for GCC
  563. Summary(ja): GNU コンパイラ集 - テストカバレージツールとプロトタイプツール
  564. Group: Development/Languages
  565. %description tools
  566. GNU CC coverage tool and prototizing tool.
  567. see the info of gcc.
  568. %description tools -l ja
  569. GNU CC のテストカバレージツールとプロトタイプツールです。
  570. 詳しくは gcc の Info をご覧ください。
  571. ################################################# docs
  572. %package docs
  573. Summary: Documents (info, man) of GNU Compiler Collection
  574. Summary(ja): GNU コンパイラ集 - GNU CC関係 の man および info です
  575. Group: Applications/Documentation
  576. Requires(post): /sbin/install-info
  577. Requires(preun): /sbin/install-info
  578. %description docs
  579. The documents (info, man) of GNU Compiler Collection.
  580. includes gcc, g++, gfortran, cpp and more.
  581. %description docs -l ja
  582. GNU Compiler Collection 関係 の man および info です。
  583. includes gcc, g++, gfortran, cpp の man / info などを含みます。
  584. #####################################################################
  585. %prep
  586. %if %{stock_tarball}
  587. %setup -q
  588. %else
  589. %setup -q -n gcc-%{version}-%{DATE}
  590. %endif
  591. %patch0 -p0 -b .hack~
  592. %patch1 -p0 -b .build-id~
  593. %patch2 -p0 -b .c++-builtin-redecl~
  594. %patch3 -p0 -b .ia64-libunwind~
  595. %patch4 -p0 -b .java-nomulti~
  596. %patch5 -p0 -b .ppc32-retaddr~
  597. %patch6 -p0 -b .pr33763~
  598. %patch7 -p0 -b .rh330771~
  599. %patch8 -p0 -b .i386-libgomp~
  600. %patch9 -p0 -b .sparc-config-detection~
  601. %patch10 -p0 -b .libgomp-omp_h-multilib~
  602. %patch11 -p0 -b .libtool-no-rpath~
  603. %if %{build_cloog}
  604. %patch12 -p0 -b .cloog-dl~
  605. %endif
  606. %patch13 -p0 -b .unwind-debug-hook~
  607. %patch14 -p0 -b .pr38757~
  608. %if %{build_libstdcxx_docs}
  609. %patch15 -p0 -b .libstdc++-docs~
  610. %endif
  611. %patch16 -p0 -b .ppc64-aixdesc~
  612. %patch17 -p0 -b .no-add-needed~
  613. %patch18 -p0 -b .pr44542~
  614. %patch19 -p0 -b .rh610785~
  615. %patch20 -p0 -b .rh533181~
  616. # This testcase doesn't compile.
  617. rm libjava/testsuite/libjava.lang/PR35020*
  618. %if %{bootstrap_java}
  619. tar xjf %{SOURCE10}
  620. %endif
  621. #sed -i -e 's/4\.4\.5/4.4.4/' gcc/BASE-VER
  622. echo 'Vine Linux %{version}-%{gcc_release}' > gcc/DEV-PHASE
  623. sed -i -e 's/gcj-\$gcjversion-\$libgcj_soversion/gcj-\$gcjversion/g' libjava/configure
  624. # Default to -gdwarf-3 rather than -gdwarf-2
  625. sed -i '/UInteger Var(dwarf_version)/s/Init(2)/Init(3)/' gcc/common.opt
  626. sed -i 's/\(may be either 2 or 3; the default version is \)2\./\13./' gcc/doc/invoke.texi
  627. cp -a libstdc++-v3/config/cpu/i{4,3}86/atomicity.h
  628. # Hack to avoid building multilib libjava
  629. perl -pi -e 's/^all: all-redirect/ifeq (\$(MULTISUBDIR),)\nall: all-redirect\nelse\nall:\n\techo Multilib libjava build disabled\nendif/' libjava/Makefile.in
  630. perl -pi -e 's/^install: install-redirect/ifeq (\$(MULTISUBDIR),)\ninstall: install-redirect\nelse\ninstall:\n\techo Multilib libjava install disabled\nendif/' libjava/Makefile.in
  631. perl -pi -e 's/^check: check-redirect/ifeq (\$(MULTISUBDIR),)\ncheck: check-redirect\nelse\ncheck:\n\techo Multilib libjava check disabled\nendif/' libjava/Makefile.in
  632. perl -pi -e 's/^all: all-recursive/ifeq (\$(MULTISUBDIR),)\nall: all-recursive\nelse\nall:\n\techo Multilib libjava build disabled\nendif/' libjava/Makefile.in
  633. perl -pi -e 's/^install: install-recursive/ifeq (\$(MULTISUBDIR),)\ninstall: install-recursive\nelse\ninstall:\n\techo Multilib libjava install disabled\nendif/' libjava/Makefile.in
  634. perl -pi -e 's/^check: check-recursive/ifeq (\$(MULTISUBDIR),)\ncheck: check-recursive\nelse\ncheck:\n\techo Multilib libjava check disabled\nendif/' libjava/Makefile.in
  635. ./contrib/gcc_update --touch
  636. LC_ALL=C sed -i -e 's/\xa0/ /' gcc/doc/options.texi
  637. %ifarch ppc
  638. %if %{biarch_on_ppc32}
  639. if [ -d libstdc++-v3/config/abi/post/powerpc64-linux-gnu ]; then
  640. mkdir -p libstdc++-v3/config/abi/post/powerpc64-linux-gnu/64
  641. mv libstdc++-v3/config/abi/post/powerpc64-linux-gnu/{,64/}baseline_symbols.txt
  642. mv libstdc++-v3/config/abi/post/powerpc64-linux-gnu/{32/,}baseline_symbols.txt
  643. rm -rf libstdc++-v3/config/abi/post/powerpc64-linux-gnu/32
  644. fi
  645. %endif
  646. %endif
  647. %ifarch sparc
  648. if [ -d libstdc++-v3/config/abi/post/sparc64-linux-gnu ]; then
  649. mkdir -p libstdc++-v3/config/abi/post/sparc64-linux-gnu/64
  650. mv libstdc++-v3/config/abi/post/sparc64-linux-gnu/{,64/}baseline_symbols.txt
  651. mv libstdc++-v3/config/abi/post/sparc64-linux-gnu/{32/,}baseline_symbols.txt
  652. rm -rf libstdc++-v3/config/abi/post/sparc64-linux-gnu/32
  653. fi
  654. %endif
  655. %build
  656. rm -fr obj-%{gcc_target_platform}
  657. mkdir obj-%{gcc_target_platform}
  658. cd obj-%{gcc_target_platform}
  659. %if %{build_java}
  660. %if !%{bootstrap_java}
  661. # If we don't have gjavah in $PATH, try to build it with the old gij
  662. mkdir java_hacks
  663. cd java_hacks
  664. cp -a ../../libjava/classpath/tools/external external
  665. mkdir -p gnu/classpath/tools
  666. cp -a ../../libjava/classpath/tools/gnu/classpath/tools/{common,javah,getopt} gnu/classpath/tools/
  667. cp -a ../../libjava/classpath/tools/resource/gnu/classpath/tools/common/Messages.properties gnu/classpath/tools/common
  668. cp -a ../../libjava/classpath/tools/resource/gnu/classpath/tools/getopt/Messages.properties gnu/classpath/tools/getopt
  669. cd external/asm; for i in `find . -name \*.java`; do gcj --encoding ISO-8859-1 -C $i -I.; done; cd ../..
  670. for i in `find gnu -name \*.java`; do gcj -C $i -I. -Iexternal/asm/; done
  671. gcj -findirect-dispatch -O2 -fmain=gnu.classpath.tools.javah.Main -I. -Iexternal/asm/ `find . -name \*.class` -o gjavah.real
  672. cat > gjavah <<EOF
  673. #!/bin/sh
  674. export CLASSPATH=`pwd`${CLASSPATH:+:$CLASSPATH}
  675. exec `pwd`/gjavah.real "\$@"
  676. EOF
  677. chmod +x `pwd`/gjavah
  678. cat > ecj1 <<EOF
  679. #!/bin/sh
  680. #java -cp `pwd`/ecj.jar org.eclipse.jdt.internal.compiler.batch.GCCMain "\$@"
  681. exec gij -cp /usr/share/java/eclipse-ecj.jar org.eclipse.jdt.internal.compiler.batch.GCCMain "\$@"
  682. EOF
  683. chmod +x `pwd`/ecj1
  684. export PATH=`pwd`${PATH:+:$PATH}
  685. cd ..
  686. %endif
  687. %endif
  688. CC=gcc
  689. OPT_FLAGS=`echo %{optflags}|sed -e 's/\(-Wp,\)\?-D_FORTIFY_SOURCE=[12]//g'`
  690. OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-m64//g;s/-m32//g;s/-m31//g'`
  691. %ifarch sparc
  692. OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mcpu=ultrasparc/-mtune=ultrasparc/g;s/-mcpu=v[78]//g'`
  693. %endif
  694. %ifarch %{ix86}
  695. OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-march=i.86//g'`
  696. %endif
  697. %ifarch sparc64
  698. cat > gcc64 <<"EOF"
  699. #!/bin/sh
  700. exec /usr/bin/gcc -m64 "$@"
  701. EOF
  702. chmod +x gcc64
  703. CC=`pwd`/gcc64
  704. %endif
  705. %ifarch ppc64
  706. if gcc -m64 -xc -S /dev/null -o - > /dev/null 2>&1; then
  707. cat > gcc64 <<"EOF"
  708. #!/bin/sh
  709. exec /usr/bin/gcc -m64 "$@"
  710. EOF
  711. chmod +x gcc64
  712. CC=`pwd`/gcc64
  713. fi
  714. %endif
  715. OPT_FLAGS=`echo "$OPT_FLAGS" | sed -e 's/[[:blank:]]\+/ /g'`
  716. case "$OPT_FLAGS" in
  717. *-fasynchronous-unwind-tables*)
  718. sed -i -e 's/-fno-exceptions /-fno-exceptions -fno-asynchronous-unwind-tables/' \
  719. ../gcc/Makefile.in
  720. ;;
  721. esac
  722. CC="$CC" CFLAGS="$OPT_FLAGS" CXXFLAGS="`echo $OPT_FLAGS | sed 's/ -Wall / /g'`" XCFLAGS="$OPT_FLAGS" TCFLAGS="$OPT_FLAGS" \
  723. GCJFLAGS="$OPT_FLAGS" \
  724. ../configure --prefix=%{_prefix} --mandir=%{_mandir} --infodir=%{_infodir} \
  725. --enable-bootstrap \
  726. --enable-shared --enable-threads=posix --enable-checking=release \
  727. --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions \
  728. --enable-gnu-unique-object \
  729. %if !%{build_ada}
  730. --enable-languages=c,c++,objc,obj-c++,java,fortran \
  731. %else
  732. --enable-languages=c,c++,objc,obj-c++,java,fortran,ada \
  733. %endif
  734. %if !%{build_java}
  735. --disable-libgcj \
  736. %else
  737. --enable-java-awt=gtk --disable-dssi \
  738. --with-native-libdir=%{_libdir}/gcj-%{version} \
  739. %if %{include_gappletviewer}
  740. --enable-plugin \
  741. %endif
  742. --with-java-home=%{_prefix}/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre \
  743. --enable-libgcj-multifile \
  744. %if !%{bootstrap_java}
  745. --enable-java-maintainer-mode \
  746. %endif
  747. --with-ecj-jar=/usr/share/java/eclipse-ecj.jar \
  748. --disable-libjava-multilib \
  749. %endif
  750. %if %{build_cloog}
  751. --with-ppl --with-cloog \
  752. %endif
  753. %ifarch %{arm}
  754. --disable-sjlj-exceptions \
  755. %endif
  756. %ifarch ppc ppc64
  757. --enable-secureplt \
  758. %endif
  759. %ifarch sparc ppc ppc64 s390 s390x alpha
  760. --with-long-double-128 \
  761. %endif
  762. %ifarch sparc
  763. --disable-linux-futex \
  764. %endif
  765. %ifarch sparc64
  766. --with-cpu=ultrasparc \
  767. %endif
  768. %ifarch sparc sparcv9
  769. --host=%{gcc_target_platform} --build=%{gcc_target_platform} --target=%{gcc_target_platform} --with-cpu=v7
  770. %endif
  771. %ifarch ppc ppc64
  772. %if %{biarch_on_ppc32}
  773. --with-cpu-32=power4 --with-tune-32=power6 --with-cpu-64=power4 --with-tune-64=power6 \
  774. %endif
  775. %endif
  776. %ifarch ppc
  777. %if !%{biarch_on_ppc32}
  778. --disable-multilib \
  779. %endif
  780. --host=%{gcc_target_platform} --build=%{gcc_target_platform} --target=%{gcc_target_platform} --with-cpu=default32
  781. %endif
  782. %ifarch %{ix86}
  783. --with-arch=i686 \
  784. %endif
  785. %ifarch x86_64
  786. --with-arch_32=i686 \
  787. %endif
  788. %ifarch s390 s390x
  789. --with-arch=z9-109 --with-tune=z10 \
  790. %endif
  791. %ifnarch sparc sparcv9 ppc
  792. --host=%{gcc_target_platform} --build=%{gcc_target_platform}
  793. %endif
  794. GCJFLAGS="$OPT_FLAGS" make %{?_smp_mflags} BOOT_CFLAGS="$OPT_FLAGS" bootstrap
  795. #GCJFLAGS="$OPT_FLAGS" make %{?_smp_mflags} BOOT_CFLAGS="$OPT_FLAGS" profiledbootstrap
  796. #GCJFLAGS="$OPT_FLAGS" make %{?_smp_mflags} BOOT_CFLAGS="$OPT_FLAGS" bootstrap-lean
  797. # Make protoize
  798. make -C gcc CC="./xgcc -B ./ -O2" proto
  799. # Make generated man pages even if Pod::Man is not new enough
  800. perl -pi -e 's/head3/head2/' ../contrib/texi2pod.pl
  801. for i in ../gcc/doc/*.texi; do
  802. cp -a $i $i.orig; sed 's/ftable/table/' $i.orig > $i
  803. done
  804. make -C gcc generated-manpages
  805. for i in ../gcc/doc/*.texi; do mv -f $i.orig $i; done
  806. # Make generated doxygen pages.
  807. %if %{build_libstdcxx_docs}
  808. cd %{gcc_target_platform}/libstdc++-v3
  809. make doc-html-doxygen
  810. make doc-man-doxygen
  811. cd ../..
  812. %endif
  813. # Copy various doc files here and there
  814. cd ..
  815. mkdir -p rpm.doc/gfortran rpm.doc/objc
  816. ##VINE## mkdir -p rpm.doc/boehm-gc rpm.doc/fastjar rpm.doc/libffi rpm.doc/libjava
  817. mkdir -p rpm.doc/boehm-gc rpm.doc/libffi rpm.doc/libjava
  818. mkdir -p rpm.doc/changelogs/{gcc/cp,gcc/java,gcc/ada,libstdc++-v3,libobjc,libmudflap,libgomp}
  819. sed -e 's,@VERSION@,%{gcc_version},' %{SOURCE2} > rpm.doc/README.libgcjwebplugin.so
  820. for i in {gcc,gcc/cp,gcc/java,gcc/ada,libstdc++-v3,libobjc,libmudflap,libgomp}/ChangeLog*; do
  821. cp -p $i rpm.doc/changelogs/$i
  822. done
  823. (cd gcc/fortran; for i in ChangeLog*; do
  824. cp -p $i ../../rpm.doc/gfortran/$i
  825. done)
  826. (cd libgfortran; for i in ChangeLog*; do
  827. cp -p $i ../rpm.doc/gfortran/$i.libgfortran
  828. done)
  829. (cd gcc/objc; for i in README*; do
  830. cp -p $i ../../rpm.doc/objc/$i.objc
  831. done)
  832. (cd libobjc; for i in README*; do
  833. cp -p $i ../rpm.doc/objc/$i.libobjc
  834. done)
  835. (cd boehm-gc; for i in ChangeLog*; do
  836. cp -p $i ../rpm.doc/boehm-gc/$i.gc
  837. done)
  838. ##VINE## (cd fastjar-%{fastjar_ver}; for i in ChangeLog* README*; do
  839. ##VINE## cp -p $i ../rpm.doc/fastjar/$i.fastjar
  840. ##VINE## done)
  841. (cd libffi; for i in ChangeLog* README* LICENSE; do
  842. cp -p $i ../rpm.doc/libffi/$i.libffi
  843. done)
  844. (cd libjava; for i in ChangeLog* README*; do
  845. cp -p $i ../rpm.doc/libjava/$i.libjava
  846. done)
  847. cp -p libjava/LIBGCJ_LICENSE rpm.doc/libjava/
  848. rm -f rpm.doc/changelogs/gcc/ChangeLog.[1-9]
  849. find rpm.doc -name \*ChangeLog\* | xargs bzip2 -9
  850. %if %{build_java_tar}
  851. find libjava -name \*.h -type f | xargs grep -l '// DO NOT EDIT THIS FILE - it is machine generated' > libjava-classes.list
  852. find libjava -name \*.class -type f >> libjava-classes.list
  853. find libjava/testsuite -name \*.jar -type f >> libjava-classes.list
  854. tar cf - -T libjava-classes.list | bzip2 -9 > $RPM_SOURCE_DIR/libjava-classes-%{version}-%{release}.tar.bz2
  855. %endif
  856. %install
  857. rm -fr $RPM_BUILD_ROOT
  858. cd obj-%{gcc_target_platform}
  859. %if %{build_java}
  860. export GCJ_PROPERTIES=jdt.compiler.useSingleThread=true
  861. ##VINE## export PATH=`pwd`/../fastjar-%{fastjar_ver}/obj-%{gcc_target_platform}${PATH:+:$PATH}
  862. %if !%{bootstrap_java}
  863. export PATH=`pwd`/java_hacks${PATH:+:$PATH}
  864. %endif
  865. %endif
  866. TARGET_PLATFORM=%{gcc_target_platform}
  867. # There are some MP bugs in libstdc++ Makefiles
  868. make -C %{gcc_target_platform}/libstdc++-v3
  869. make DESTDIR=$RPM_BUILD_ROOT install
  870. %if %{build_java}
  871. make DESTDIR=$RPM_BUILD_ROOT -C %{gcc_target_platform}/libjava install-src.zip
  872. %endif
  873. %if %{build_ada}
  874. chmod 644 $RPM_BUILD_ROOT%{_infodir}/gnat*
  875. %endif
  876. FULLPATH=$RPM_BUILD_ROOT%{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  877. FULLEPATH=$RPM_BUILD_ROOT%{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  878. # fix some things
  879. ln -sf gcc $RPM_BUILD_ROOT%{_prefix}/bin/cc
  880. mkdir -p $RPM_BUILD_ROOT/lib
  881. ln -sf ..%{_prefix}/bin/cpp $RPM_BUILD_ROOT/lib/cpp
  882. ln -sf gfortran $RPM_BUILD_ROOT%{_prefix}/bin/f95
  883. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  884. gzip -9 $RPM_BUILD_ROOT%{_infodir}/*.info*
  885. ##VINE## will be handled with alternatives
  886. #ln -sf gcc $RPM_BUILD_ROOT%{_prefix}/bin/gnatgcc
  887. cxxconfig="`find %{gcc_target_platform}/libstdc++-v3/include -name c++config.h`"
  888. for i in `find %{gcc_target_platform}/[36]*/libstdc++-v3/include -name c++config.h 2>/dev/null`; do
  889. if ! diff -up $cxxconfig $i; then
  890. cat > $RPM_BUILD_ROOT%{_prefix}/include/c++/%{gcc_version}/%{gcc_target_platform}/bits/c++config.h <<EOF
  891. #ifndef _CPP_CPPCONFIG_WRAPPER
  892. #define _CPP_CPPCONFIG_WRAPPER 1
  893. #include <bits/wordsize.h>
  894. #if __WORDSIZE == 32
  895. %ifarch %{multilib_64_archs}
  896. `cat $(find %{gcc_target_platform}/32/libstdc++-v3/include -name c++config.h)`
  897. %else
  898. `cat $(find %{gcc_target_platform}/libstdc++-v3/include -name c++config.h)`
  899. %endif
  900. #else
  901. %ifarch %{multilib_64_archs}
  902. `cat $(find %{gcc_target_platform}/libstdc++-v3/include -name c++config.h)`
  903. %else
  904. `cat $(find %{gcc_target_platform}/64/libstdc++-v3/include -name c++config.h)`
  905. %endif
  906. #endif
  907. #endif
  908. EOF
  909. break
  910. fi
  911. done
  912. for f in `find $RPM_BUILD_ROOT%{_prefix}/include/c++/%{gcc_version}/%{gcc_target_platform}/ -name c++config.h`; do
  913. for i in 1 2 4 8; do
  914. sed -i -e 's/#define _GLIBCXX_ATOMIC_BUILTINS_'$i' 1/#ifdef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_'$i'\
  915. &\
  916. #endif/' $f
  917. done
  918. done
  919. # Nuke bits/stdc++.h.gch dirs
  920. # 1) there is no bits/stdc++.h header installed, so when gch file can't be
  921. # used, compilation fails
  922. # 2) sometimes it is hard to match the exact options used for building
  923. # libstdc++-v3 or they aren't desirable
  924. # 3) there are multilib issues, conflicts etc. with this
  925. # 4) it is huge
  926. # People can always precompile on their own whatever they want, but
  927. # shipping this for everybody is unnecessary.
  928. rm -rf $RPM_BUILD_ROOT%{_prefix}/include/c++/%{gcc_version}/%{gcc_target_platform}/bits/stdc++.h.gch
  929. %if %{build_libstdcxx_docs}
  930. rm -rf ../rpm.doc/libstdc++-v3/html/api
  931. libstdcxx_doc_builddir=%{gcc_target_platform}/libstdc++-v3/doc/doxygen
  932. mkdir -p ../rpm.doc/libstdc++-v3
  933. cp -r -p ../libstdc++-v3/doc/html ../rpm.doc/libstdc++-v3/html
  934. ##VINE## mv $libstdcxx_doc_builddir/html ../rpm.doc/libstdc++-v3/html/api
  935. cp -r -p $libstdcxx_doc_builddir/html ../rpm.doc/libstdc++-v3/html/api
  936. mkdir -p $RPM_BUILD_ROOT%{_mandir}
  937. ##VINE## mv $libstdcxx_doc_builddir/man/man3 $RPM_BUILD_ROOT%{_mandir}/man3/
  938. cp -r -p $libstdcxx_doc_builddir/man/man3 $RPM_BUILD_ROOT%{_mandir}/man3
  939. find ../rpm.doc/libstdc++-v3 -name \*~ | xargs rm
  940. %endif
  941. %ifarch sparcv9 sparc64
  942. ln -f $RPM_BUILD_ROOT%{_prefix}/bin/%{gcc_target_platform}-gcc \
  943. $RPM_BUILD_ROOT%{_prefix}/bin/sparc-%{_vendor}-%{_target_os}-gcc
  944. %endif
  945. %ifarch ppc ppc64
  946. %if %{biarch_on_ppc32}
  947. ln -f $RPM_BUILD_ROOT%{_prefix}/bin/%{gcc_target_platform}-gcc \
  948. $RPM_BUILD_ROOT%{_prefix}/bin/ppc-%{_vendor}-%{_target_os}-gcc
  949. %endif
  950. %endif
  951. %ifarch sparcv9 ppc
  952. %if %{biarch_on_ppc32}
  953. FULLLPATH=$FULLPATH/lib32
  954. %endif
  955. %endif
  956. %ifarch sparc64 ppc64
  957. FULLLPATH=$FULLPATH/lib64
  958. %endif
  959. if [ -n "$FULLLPATH" ]; then
  960. mkdir -p $FULLLPATH
  961. else
  962. FULLLPATH=$FULLPATH
  963. fi
  964. find $RPM_BUILD_ROOT -name \*.la | xargs rm -f
  965. %if %{build_java}
  966. # gcj -static doesn't work properly anyway, unless using --whole-archive
  967. # and saving 35MB is not bad.
  968. find $RPM_BUILD_ROOT -name libgcj.a -o -name libgtkpeer.a \
  969. -o -name libgjsmalsa.a -o -name libgcj-tools.a \
  970. -o -name libjvm.a -o -name libgij.a -o -name libgcj_bc.a \
  971. -o -name libjavamath.a | xargs rm -f
  972. mv $RPM_BUILD_ROOT%{_prefix}/lib/libgcj.spec $FULLPATH/
  973. sed -i -e 's/lib: /&%%{static:%%eJava programs cannot be linked statically}/' \
  974. $FULLPATH/libgcj.spec
  975. %endif
  976. mkdir -p $RPM_BUILD_ROOT/%{_lib}
  977. %if !%{stock_tarball}
  978. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgcc_s.so.1 $RPM_BUILD_ROOT/%{_lib}/libgcc_s-%{gcc_version}-%{DATE}.so.1
  979. chmod 755 $RPM_BUILD_ROOT/%{_lib}/libgcc_s-%{gcc_version}-%{DATE}.so.1
  980. ln -sf libgcc_s-%{gcc_version}-%{DATE}.so.1 $RPM_BUILD_ROOT/%{_lib}/libgcc_s.so.1
  981. ln -sf /%{_lib}/libgcc_s.so.1 $FULLPATH/libgcc_s.so
  982. %ifarch %{multilib_64_archs}
  983. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libgcc_s.so.1 $RPM_BUILD_ROOT/lib/libgcc_s-%{gcc_version}-%{DATE}.so.1
  984. chmod 755 $RPM_BUILD_ROOT/lib/libgcc_s-%{gcc_version}-%{DATE}.so.1
  985. ln -sf libgcc_s-%{gcc_version}-%{DATE}.so.1 $RPM_BUILD_ROOT/lib/libgcc_s.so.1
  986. %endif
  987. %else
  988. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgcc_s.so.1 $RPM_BUILD_ROOT/%{_lib}/libgcc_s-%{gcc_version}.so.1
  989. chmod 755 $RPM_BUILD_ROOT/%{_lib}/libgcc_s-%{gcc_version}.so.1
  990. ln -sf libgcc_s-%{gcc_version}.so.1 $RPM_BUILD_ROOT/%{_lib}/libgcc_s.so.1
  991. ln -sf /%{_lib}/libgcc_s.so.1 $FULLPATH/libgcc_s.so
  992. %ifarch %{multilib_64_archs}
  993. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libgcc_s.so.1 $RPM_BUILD_ROOT/lib/libgcc_s-%{gcc_version}.so.1
  994. chmod 755 $RPM_BUILD_ROOT/lib/libgcc_s-%{gcc_version}.so.1
  995. ln -sf libgcc_s-%{gcc_version}.so.1 $RPM_BUILD_ROOT/lib/libgcc_s.so.1
  996. %endif
  997. %endif
  998. %ifarch sparcv9 ppc
  999. %if %{biarch_on_ppc32}
  1000. ln -sf /lib64/libgcc_s.so.1 $FULLPATH/64/libgcc_s.so
  1001. %endif
  1002. %endif
  1003. %ifarch %{multilib_64_archs}
  1004. ln -sf /lib/libgcc_s.so.1 $FULLPATH/32/libgcc_s.so
  1005. %endif
  1006. %ifarch ppc
  1007. rm -f $FULLPATH/libgcc_s.so
  1008. echo '/* GNU ld script
  1009. Use the shared library, but some functions are only in
  1010. the static library, so try that secondarily. */
  1011. OUTPUT_FORMAT(elf32-powerpc)
  1012. GROUP ( /lib/libgcc_s.so.1 libgcc.a )' > $FULLPATH/libgcc_s.so
  1013. %endif
  1014. %ifarch ppc64
  1015. rm -f $FULLPATH/32/libgcc_s.so
  1016. echo '/* GNU ld script
  1017. Use the shared library, but some functions are only in
  1018. the static library, so try that secondarily. */
  1019. OUTPUT_FORMAT(elf32-powerpc)
  1020. GROUP ( /lib/libgcc_s.so.1 libgcc.a )' > $FULLPATH/32/libgcc_s.so
  1021. %endif
  1022. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgomp.spec $FULLPATH/
  1023. %if %{build_ada}
  1024. mv -f $FULLPATH/adalib/libgnarl-*.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
  1025. mv -f $FULLPATH/adalib/libgnat-*.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
  1026. rm -f $FULLPATH/adalib/libgnarl.so* $FULLPATH/adalib/libgnat.so*
  1027. %endif
  1028. mkdir -p $RPM_BUILD_ROOT%{_prefix}/libexec/getconf
  1029. if gcc/xgcc -B gcc/ -E -dD -xc /dev/null | grep __LONG_MAX__.*2147483647; then
  1030. ln -sf POSIX_V6_ILP32_OFF32 $RPM_BUILD_ROOT%{_prefix}/libexec/getconf/default
  1031. else
  1032. ln -sf POSIX_V6_LP64_OFF64 $RPM_BUILD_ROOT%{_prefix}/libexec/getconf/default
  1033. fi
  1034. %if %{build_java}
  1035. if [ "%{_lib}" != "lib" ]; then
  1036. mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}/pkgconfig
  1037. sed '/^libdir/s/lib$/%{_lib}/' $RPM_BUILD_ROOT%{_prefix}/lib/pkgconfig/libgcj-*.pc \
  1038. > $RPM_BUILD_ROOT%{_prefix}/%{_lib}/pkgconfig/`basename %{buildroot}%{_prefix}/lib/pkgconfig/libgcj-*.pc`
  1039. fi
  1040. %endif
  1041. pushd $FULLPATH
  1042. if [ "%{_lib}" = "lib" ]; then
  1043. ln -sf ../../../libobjc.so.2 libobjc.so
  1044. ln -sf ../../../libstdc++.so.6.* libstdc++.so
  1045. ln -sf ../../../libgfortran.so.3.* libgfortran.so
  1046. ln -sf ../../../libgomp.so.1.* libgomp.so
  1047. ln -sf ../../../libmudflap.so.0.* libmudflap.so
  1048. ln -sf ../../../libmudflapth.so.0.* libmudflapth.so
  1049. %if %{build_java}
  1050. ln -sf ../../../libgcj.so.10.* libgcj.so
  1051. ln -sf ../../../libgcj-tools.so.10.* libgcj-tools.so
  1052. ln -sf ../../../libgij.so.10.* libgij.so
  1053. %if %{biarch_on_ppc32}
  1054. mv ../../../libgcj_bc.so libgcj_bc.so
  1055. %endif
  1056. %endif
  1057. else
  1058. ln -sf ../../../../%{_lib}/libobjc.so.2 libobjc.so
  1059. ln -sf ../../../../%{_lib}/libstdc++.so.6.* libstdc++.so
  1060. ln -sf ../../../../%{_lib}/libgfortran.so.3.* libgfortran.so
  1061. ln -sf ../../../../%{_lib}/libgomp.so.1.* libgomp.so
  1062. ln -sf ../../../../%{_lib}/libmudflap.so.0.* libmudflap.so
  1063. ln -sf ../../../../%{_lib}/libmudflapth.so.0.* libmudflapth.so
  1064. %if %{build_java}
  1065. ln -sf ../../../../%{_lib}/libgcj.so.10.* libgcj.so
  1066. ln -sf ../../../../%{_lib}/libgcj-tools.so.10.* libgcj-tools.so
  1067. ln -sf ../../../../%{_lib}/libgij.so.10.* libgij.so
  1068. %if %{biarch_on_ppc32}
  1069. mv ../../../../%{_lib}/libgcj_bc.so libgcj_bc.so
  1070. %endif
  1071. %endif
  1072. fi
  1073. %if %{build_java}
  1074. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgcj_bc.so $FULLLPATH/
  1075. %endif
  1076. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libstdc++.*a $FULLLPATH/
  1077. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libsupc++.*a .
  1078. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgfortran.*a .
  1079. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libobjc.*a .
  1080. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgomp.*a .
  1081. mv -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libmudflap{,th}.*a .
  1082. %if %{build_ada}
  1083. %ifarch sparcv9 ppc
  1084. rm -rf $FULLPATH/64/ada{include,lib}
  1085. %endif
  1086. %ifarch %{multilib_64_archs}
  1087. rm -rf $FULLPATH/32/ada{include,lib}
  1088. %endif
  1089. if [ "$FULLPATH" != "$FULLLPATH" ]; then
  1090. mv -f $FULLPATH/ada{include,lib} $FULLLPATH/
  1091. pushd $FULLLPATH/adalib
  1092. if [ "%{_lib}" = "lib" ]; then
  1093. ln -sf ../../../../../libgnarl-*.so libgnarl.so
  1094. ln -sf ../../../../../libgnarl-*.so libgnarl-4.4.so
  1095. ln -sf ../../../../../libgnat-*.so libgnat.so
  1096. ln -sf ../../../../../libgnat-*.so libgnat-4.4.so
  1097. else
  1098. ln -sf ../../../../../../%{_lib}/libgnarl-*.so libgnarl.so
  1099. ln -sf ../../../../../../%{_lib}/libgnarl-*.so libgnarl-4.4.so
  1100. ln -sf ../../../../../../%{_lib}/libgnat-*.so libgnat.so
  1101. ln -sf ../../../../../../%{_lib}/libgnat-*.so libgnat-4.4.so
  1102. fi
  1103. popd
  1104. else
  1105. pushd $FULLPATH/adalib
  1106. if [ "%{_lib}" = "lib" ]; then
  1107. ln -sf ../../../../libgnarl-*.so libgnarl.so
  1108. ln -sf ../../../../libgnarl-*.so libgnarl-4.4.so
  1109. ln -sf ../../../../libgnat-*.so libgnat.so
  1110. ln -sf ../../../../libgnat-*.so libgnat-4.4.so
  1111. else
  1112. ln -sf ../../../../../%{_lib}/libgnarl-*.so libgnarl.so
  1113. ln -sf ../../../../../%{_lib}/libgnarl-*.so libgnarl-4.4.so
  1114. ln -sf ../../../../../%{_lib}/libgnat-*.so libgnat.so
  1115. ln -sf ../../../../../%{_lib}/libgnat-*.so libgnat-4.4.so
  1116. fi
  1117. popd
  1118. fi
  1119. %endif
  1120. %ifarch sparcv9 ppc
  1121. %if %{biarch_on_ppc32}
  1122. ln -sf ../../../../../lib64/libobjc.so.2 64/libobjc.so
  1123. ln -sf ../`echo ../../../../lib/libstdc++.so.6.* | sed s~/lib/~/lib64/~` 64/libstdc++.so
  1124. ln -sf ../`echo ../../../../lib/libgfortran.so.3.* | sed s~/lib/~/lib64/~` 64/libgfortran.so
  1125. ln -sf ../`echo ../../../../lib/libgomp.so.1.* | sed s~/lib/~/lib64/~` 64/libgomp.so
  1126. rm -f libmudflap.so libmudflapth.so
  1127. echo 'INPUT ( %{_prefix}/lib/'`echo ../../../../lib/libmudflap.so.0.* | sed 's,^.*libm,libm,'`' )' > libmudflap.so
  1128. echo 'INPUT ( %{_prefix}/lib/'`echo ../../../../lib/libmudflapth.so.0.* | sed 's,^.*libm,libm,'`' )' > libmudflapth.so
  1129. echo 'INPUT ( %{_prefix}/lib64/'`echo ../../../../lib/libmudflap.so.0.* | sed 's,^.*libm,libm,'`' )' > 64/libmudflap.so
  1130. echo 'INPUT ( %{_prefix}/lib64/'`echo ../../../../lib/libmudflapth.so.0.* | sed 's,^.*libm,libm,'`' )' > 64/libmudflapth.so
  1131. %if %{build_java}
  1132. ln -sf ../`echo ../../../../lib/libgcj.so.10.* | sed s~/lib/~/lib64/~` 64/libgcj.so
  1133. ln -sf ../`echo ../../../../lib/libgcj-tools.so.10.* | sed s~/lib/~/lib64/~` 64/libgcj-tools.so
  1134. ln -sf ../`echo ../../../../lib/libgij.so.10.* | sed s~/lib/~/lib64/~` 64/libgij.so
  1135. ln -sf lib32/libgcj_bc.so libgcj_bc.so
  1136. ln -sf ../lib64/libgcj_bc.so 64/libgcj_bc.so
  1137. ##VINE## if %{biarch_on_ppc32}
  1138. ##VINE## mv ../../../../lib64/libgcj_bc.so 64/libgcj_bc.so
  1139. ##VINE## endif
  1140. %endif
  1141. mv -f $RPM_BUILD_ROOT%{_prefix}/lib64/libsupc++.*a 64/
  1142. mv -f $RPM_BUILD_ROOT%{_prefix}/lib64/libgfortran.*a 64/
  1143. mv -f $RPM_BUILD_ROOT%{_prefix}/lib64/libobjc.*a 64/
  1144. mv -f $RPM_BUILD_ROOT%{_prefix}/lib64/libgomp.*a 64/
  1145. mv -f $RPM_BUILD_ROOT%{_prefix}/lib64/libmudflap{,th}.*a 64/
  1146. ln -sf lib32/libstdc++.a libstdc++.a
  1147. ln -sf ../lib64/libstdc++.a 64/libstdc++.a
  1148. ln -sf lib32/libmudflap.a libmudflap.a
  1149. ln -sf ../lib64/libmudflap.a 64/libmudflap.a
  1150. ln -sf lib32/libmudflapth.a libmudflapth.a
  1151. ln -sf ../lib64/libmudflapth.a 64/libmudflapth.a
  1152. %if %{build_ada}
  1153. ln -sf lib32/adainclude adainclude
  1154. ln -sf ../lib64/adainclude 64/adainclude
  1155. ln -sf lib32/adalib adalib
  1156. ln -sf ../lib64/adalib 64/adalib
  1157. %endif
  1158. %endif
  1159. %endif
  1160. %ifarch %{multilib_64_archs}
  1161. mkdir -p 32
  1162. ln -sf ../../../../libobjc.so.2 32/libobjc.so
  1163. ln -sf ../`echo ../../../../lib64/libstdc++.so.6.* | sed s~/../lib64/~/~` 32/libstdc++.so
  1164. ln -sf ../`echo ../../../../lib64/libgfortran.so.1.* | sed s~/../lib64/~/~` 32/libgfortran.so
  1165. ln -sf ../`echo ../../../../lib64/libgomp.so.1.* | sed s~/../lib64/~/~` 32/libgomp.so
  1166. rm -f libmudflap.so libmudflapth.so
  1167. echo 'INPUT ( %{_prefix}/lib64/'`echo ../../../../lib64/libmudflap.so.0.* | sed 's,^.*libm,libm,'`' )' > libmudflap.so
  1168. echo 'INPUT ( %{_prefix}/lib64/'`echo ../../../../lib64/libmudflapth.so.0.* | sed 's,^.*libm,libm,'`' )' > libmudflapth.so
  1169. echo 'INPUT ( %{_prefix}/lib/'`echo ../../../../lib64/libmudflap.so.0.* | sed 's,^.*libm,libm,'`' )' > 32/libmudflap.so
  1170. echo 'INPUT ( %{_prefix}/lib/'`echo ../../../../lib64/libmudflapth.so.0.* | sed 's,^.*libm,libm,'`' )' > 32/libmudflapth.so
  1171. %if %{build_java}
  1172. ln -sf ../`echo ../../../../lib64/libgcj.so.10.* | sed s~/../lib64/~/~` 32/libgcj.so
  1173. ln -sf ../`echo ../../../../lib64/libgcj-tools.so.10.* | sed s~/../lib64/~/~` 32/libgcj-tools.so
  1174. ln -sf ../`echo ../../../../lib64/libgij.so.10.* | sed s~/../lib64/~/~` 32/libgij.so
  1175. %endif
  1176. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libsupc++.*a 32/
  1177. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libgfortran.*a 32/
  1178. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libobjc.*a 32/
  1179. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libgomp.*a 32/
  1180. %endif
  1181. %ifarch sparc64 ppc64
  1182. ln -sf ../lib32/libstdc++.a 32/libstdc++.a
  1183. ln -sf lib64/libstdc++.a libstdc++.a
  1184. ln -sf ../lib32/libmudflap.a 32/libmudflap.a
  1185. ln -sf lib64/libmudflap.a libmudflap.a
  1186. ln -sf ../lib32/libmudflapth.a 32/libmudflapth.a
  1187. ln -sf lib64/libmudflapth.a libmudflapth.a
  1188. %if %{build_java}
  1189. ln -sf ../lib32/libgcj_bc.so 32/libgcj_bc.so
  1190. ln -sf lib64/libgcj_bc.so libgcj_bc.so
  1191. %endif
  1192. %if %{build_ada}
  1193. ln -sf ../lib32/adainclude 32/adainclude
  1194. ln -sf lib64/adainclude adainclude
  1195. ln -sf ../lib32/adalib 32/adalib
  1196. ln -sf lib64/adalib adalib
  1197. %endif
  1198. %else
  1199. %ifarch %{multilib_64_archs}
  1200. %ifarch x86_64
  1201. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libstdc++.a 32/
  1202. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libmudflap.a 32/
  1203. mv -f $RPM_BUILD_ROOT%{_prefix}/lib/libmudflapth.a 32/
  1204. %else
  1205. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/libstdc++.a 32/libstdc++.a
  1206. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/libmudflap.a 32/libmudflap.a
  1207. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/libmudflapth.a 32/libmudflapth.a
  1208. %endif
  1209. %if %{build_java}
  1210. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/libgcj_bc.so 32/libgcj_bc.so
  1211. %endif
  1212. %if %{build_ada}
  1213. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/adainclude 32/adainclude
  1214. ln -sf ../../../%{multilib_32_arch}-%{_vendor}-%{_target_os}/%{gcc_version}/adalib 32/adalib
  1215. %endif
  1216. %endif
  1217. %endif
  1218. # Strip debug info from Fortran/ObjC/Java static libraries
  1219. strip -g `find . \( -name libgfortran.a -o -name libobjc.a -o -name libgomp.a \
  1220. -o -name libmudflap.a -o -name libmudflapth.a \
  1221. -o -name libgcc.a -o -name libgcov.a \) -a -type f`
  1222. popd
  1223. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgfortran.so.3.*
  1224. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgomp.so.1.*
  1225. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libmudflap{,th}.so.0.*
  1226. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libobjc.so.2.*
  1227. %if %{build_ada}
  1228. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgnarl*so*
  1229. chmod 755 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libgnat*so*
  1230. %endif
  1231. mv $FULLPATH/include-fixed/syslimits.h $FULLPATH/include/syslimits.h
  1232. mv $FULLPATH/include-fixed/limits.h $FULLPATH/include/limits.h
  1233. for h in `find $FULLPATH/include -name \*.h`; do
  1234. if grep -q 'It has been auto-edited by fixincludes from' $h; then
  1235. rh=`grep -A2 'It has been auto-edited by fixincludes from' $h | tail -1 | sed 's|^.*"\(.*\)".*$|\1|'`
  1236. diff -up $rh $h || :
  1237. rm -f $h
  1238. fi
  1239. done
  1240. cat > $RPM_BUILD_ROOT%{_prefix}/bin/c89-%{gcc_version} <<"EOF"
  1241. #!/bin/sh
  1242. fl="-std=c89"
  1243. for opt; do
  1244. case "$opt" in
  1245. -ansi|-std=c89|-std=iso9899:1990) fl="";;
  1246. -std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2
  1247. exit 1;;
  1248. esac
  1249. done
  1250. exec gcc $fl ${1+"$@"}
  1251. EOF
  1252. cat > $RPM_BUILD_ROOT%{_prefix}/bin/c99-%{gcc_version} <<"EOF"
  1253. #!/bin/sh
  1254. fl="-std=c99"
  1255. for opt; do
  1256. case "$opt" in
  1257. -std=c99|-std=iso9899:1999) fl="";;
  1258. -std=*) echo "`basename $0` called with non ISO C99 option $opt" >&2
  1259. exit 1;;
  1260. esac
  1261. done
  1262. exec gcc $fl ${1+"$@"}
  1263. EOF
  1264. chmod 755 $RPM_BUILD_ROOT%{_prefix}/bin/c?9-%{gcc_version}
  1265. mkdir -p $RPM_BUILD_ROOT%{_prefix}/sbin
  1266. gcc -static -Os %{SOURCE1} -o $RPM_BUILD_ROOT%{_prefix}/sbin/libgcc_post_upgrade
  1267. strip $RPM_BUILD_ROOT%{_prefix}/sbin/libgcc_post_upgrade
  1268. # for alternatives
  1269. pushd $RPM_BUILD_ROOT%{_bindir}
  1270. for i in gcc cpp c++ g++ gfortran f95 \
  1271. gnat gnatbind gnatbl gnatchop gnatfind gnatkr gnatlink \
  1272. gnatls gnatmake gnatprep gnatxref gprmake \
  1273. gcj gjavah gcjh jcf-dump \
  1274. jv-convert gij gjar grmic grmid grmiregistry \
  1275. gtnameserv gkeytool gorbd gserialver gcj-dbtool gjarsigner \
  1276. %{gcc_target_platform}-gcc \
  1277. %{gcc_target_platform}-g++ \
  1278. %{gcc_target_platform}-c++ \
  1279. %{gcc_target_platform}-gfortran \
  1280. %{gcc_target_platform}-gcj ; do
  1281. if [ -f "$i" ] ; then
  1282. mv $i $i-%{gcc_version}
  1283. # ln -sf $i-%{gcc_version} $i
  1284. fi
  1285. done
  1286. %ifarch sparc ppc
  1287. %if %{biarch_on_ppc32}
  1288. mv %{_target_platform}-gcc \
  1289. %{_target_platform}-gcc-${gcc_version}
  1290. %endif
  1291. %endif
  1292. %ifarch sparc64
  1293. mv sparc-%{_vendor}-%{_target_os}-gcc \
  1294. sparc-%{_vendor}-%{_target_os}-gcc-%{gcc_version} \
  1295. %endif
  1296. %ifarch ppc64
  1297. mv ppc-%{_vendor}-%{_target_os}-gcc \
  1298. ppc-%{_vendor}-%{_target_os}-gcc-%{gcc_version}
  1299. %endif
  1300. popd
  1301. pushd $RPM_BUILD_ROOT%{_prefix}/%{_lib}/security
  1302. mv classpath.security classpath.security-%{gcc_version}
  1303. popd
  1304. cd ..
  1305. %find_lang %{name}
  1306. %find_lang cpplib
  1307. # Remove binaries we will not be including, so that they don't end up in
  1308. # gcc-debuginfo
  1309. rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/{libffi*,libiberty.a}
  1310. rm -f $FULLEPATH/install-tools/{mkheaders,fixincl}
  1311. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/{32,64}/libiberty.a
  1312. rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libssp*
  1313. rm -f $RPM_BUILD_ROOT%{_prefix}/bin/gnative2ascii
  1314. %ifarch %{multilib_64_archs}
  1315. # Remove libraries for the other arch on multilib arches
  1316. %ifarch x86_64
  1317. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/{libffi*,libiberty.a}
  1318. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/libssp*
  1319. %else
  1320. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/lib*.so*
  1321. rm -f $RPM_BUILD_ROOT%{_prefix}/lib/lib*.a
  1322. %endif
  1323. %else
  1324. %ifarch sparcv9 ppc
  1325. %if %{biarch_on_ppc32}
  1326. rm -f $RPM_BUILD_ROOT%{_prefix}/lib64/lib*.so*
  1327. rm -f $RPM_BUILD_ROOT%{_prefix}/lib64/lib*.a
  1328. %endif
  1329. %endif
  1330. %endif
  1331. %if %{build_java}
  1332. mkdir -p $RPM_BUILD_ROOT%{_prefix}/share/java/gcj-endorsed \
  1333. $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gcj-%{gcc_version}/classmap.db.d
  1334. chmod 755 $RPM_BUILD_ROOT%{_prefix}/share/java/gcj-endorsed \
  1335. $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gcj-%{gcc_version} \
  1336. $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gcj-%{gcc_version}/classmap.db.d
  1337. touch $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gcj-%{gcc_version}/classmap.db
  1338. %endif
  1339. install -m644 %{SOURCE3} $RPM_BUILD_ROOT%{_mandir}/man1/protoize.1
  1340. echo '.so man1/protoize.1' > $RPM_BUILD_ROOT%{_mandir}/man1/unprotoize.1
  1341. chmod 644 $RPM_BUILD_ROOT%{_mandir}/man1/unprotoize.1
  1342. %check
  1343. %if 0
  1344. cd obj-%{gcc_target_platform}
  1345. # run the tests.
  1346. make %{?_smp_mflags} -k check ALT_CC_UNDER_TEST=gcc ALT_CXX_UNDER_TEST=g++ RUNTESTFLAGS="--target_board=unix/'{,-fstack-protector}'" || :
  1347. echo ====================TESTING=========================
  1348. ( LC_ALL=C ../contrib/test_summary || : ) 2>&1 | sed -n '/^cat.*EOF/,/^EOF/{/^cat.*EOF/d;/^EOF/d;/^LAST_UPDATED:/d;p;}'
  1349. echo ====================TESTING END=====================
  1350. mkdir testlogs-%{_target_platform}-%{version}-%{release}
  1351. for i in `find . -name \*.log | grep -F testsuite/ | grep -v 'config.log\|acats.*/tests/'`; do
  1352. ln $i testlogs-%{_target_platform}-%{version}-%{release}/ || :
  1353. done
  1354. tar cf - testlogs-%{_target_platform}-%{version}-%{release} | bzip2 -9c \
  1355. | uuencode testlogs-%{_target_platform}.tar.bz2 || :
  1356. rm -rf testlogs-%{_target_platform}-%{version}-%{release}
  1357. %endif
  1358. %clean
  1359. rm -rf $RPM_BUILD_ROOT
  1360. # %post
  1361. # /sbin/install-info \
  1362. # --info-dir=%{_infodir} %{_infodir}/gcc.info.gz
  1363. #
  1364. # %preun
  1365. # if [ $1 = 0 ]; then
  1366. # /sbin/install-info --delete \
  1367. # --info-dir=%{_infodir} %{_infodir}/gcc.info.gz
  1368. # fi
  1369. #
  1370. #
  1371. # %post cpp
  1372. # /sbin/install-info \
  1373. # --info-dir=%{_infodir} %{_infodir}/cpp.info.gz
  1374. #
  1375. # %preun cpp
  1376. # if [ $1 = 0 ]; then
  1377. # /sbin/install-info --delete \
  1378. # --info-dir=%{_infodir} %{_infodir}/cpp.info.gz
  1379. # fi
  1380. #
  1381. #
  1382. # %post gfortran
  1383. # /sbin/install-info \
  1384. # --info-dir=%{_infodir} %{_infodir}/gfortran.info.gz
  1385. #
  1386. # %preun gfortran
  1387. # if [ $1 = 0 ]; then
  1388. # /sbin/install-info --delete \
  1389. # --info-dir=%{_infodir} %{_infodir}/gfortran.info.gz
  1390. # fi
  1391. #
  1392. #
  1393. # %post java
  1394. # /sbin/install-info \
  1395. # --info-dir=%{_infodir} %{_infodir}/gcj.info.gz
  1396. #
  1397. # %preun java
  1398. # if [ $1 = 0 ]; then
  1399. # /sbin/install-info --delete \
  1400. # --info-dir=%{_infodir} %{_infodir}/gcj.info.gz
  1401. # fi
  1402. #
  1403. #
  1404. # %post gnat
  1405. # /sbin/install-info \
  1406. # --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz
  1407. # /sbin/install-info \
  1408. # --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz
  1409. # /sbin/install-info \
  1410. # --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz
  1411. #
  1412. #
  1413. # %preun gnat
  1414. # if [ $1 = 0 ]; then
  1415. # /sbin/install-info --delete \
  1416. # --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz
  1417. # /sbin/install-info --delete \
  1418. # --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz
  1419. # /sbin/install-info --delete \
  1420. # --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz
  1421. # fi
  1422. # Because glibc Prereq's libgcc and /sbin/ldconfig
  1423. # comes from glibc, it might not exist yet when
  1424. # libgcc is installed
  1425. %post -n libgcc -p %{_prefix}/sbin/libgcc_post_upgrade
  1426. %post -n libstdc++ -p /sbin/ldconfig
  1427. %postun -n libstdc++ -p /sbin/ldconfig
  1428. %post -n libobjc -p /sbin/ldconfig
  1429. %postun -n libobjc -p /sbin/ldconfig
  1430. %post -n libgcj
  1431. /sbin/ldconfig
  1432. /sbin/update-alternatives \
  1433. --install %{_bindir}/gij gij %{_bindir}/gij-%{gcc_version} 30 \
  1434. --slave %{_bindir}/jv-convert jv-convert %{_bindir}/jv-convert-%{gcc_version} \
  1435. --slave %{_bindir}/gjar gjar %{_bindir}/gjar-%{gcc_version} \
  1436. --slave %{_bindir}/grmic grmic %{_bindir}/grmic-%{gcc_version} \
  1437. --slave %{_bindir}/grmid grmid %{_bindir}/grmid-%{gcc_version} \
  1438. --slave %{_bindir}/grmiregistry grmiregistry %{_bindir}/grmiregistry-%{gcc_version} \
  1439. --slave %{_bindir}/gtnameserv gtnameserv %{_bindir}/gtnameserv-%{gcc_version} \
  1440. --slave %{_bindir}/gkeytool gkeytool %{_bindir}/gkeytool-%{gcc_version} \
  1441. --slave %{_bindir}/gorbd gorbd %{_bindir}/gorbd-%{gcc_version} \
  1442. --slave %{_bindir}/gserialver gserialver %{_bindir}/gserialver-%{gcc_version} \
  1443. --slave %{_bindir}/gcj-dbtool gcj-dbtool %{_bindir}/gcj-dbtool-%{gcc_version} \
  1444. --slave %{_bindir}/gjarsigner gjarsigner %{_bindir}/gjarsigner-%{gcc_version} \
  1445. --slave %{_prefix}/%{_lib}/security/classpath.security classpath.security %{_prefix}/%{_lib}/security/classpath.security-%{gcc_version}
  1446. %posttrans -n libgcj
  1447. # fix broken symlink if it's there
  1448. if [ ! -f %{_bindir}/gij ] ; then
  1449. /sbin/update-alternatives --auto gij
  1450. fi
  1451. %postun -n libgcj
  1452. /sbin/ldconfig
  1453. if [ $1 = 0 ]; then
  1454. /sbin/update-alternatives --remove gij %{_bindir}/gij-%{gcc_version}
  1455. /sbin/update-alternatives --auto gij
  1456. fi
  1457. %post
  1458. SLAVE=""
  1459. %ifarch sparc ppc
  1460. %if %{biarch_on_ppc32}
  1461. SLAVE="--slave %{_bindir}/%{_target_platform}-gcc \
  1462. %{_target_platform}-gcc
  1463. %{_bindir}/%{_target_platform}-gcc-%{gcc_version} "
  1464. %endif
  1465. %endif
  1466. %ifarch sparc64
  1467. SLAVE=$SLAVE" --slave %{_bindir}/sparc-%{_vendor}-%{_target_os}-gcc \
  1468. sparc-%{_vendor}-%{_target_os}-gcc \
  1469. %{_bindir}/sparc-%{_vendor}-%{_target_os}-gcc-%{gcc_version} "
  1470. %endif
  1471. %ifarch ppc64
  1472. SLAVE=$SLAVE" --slave %{_bindir}/ppc-%{_vendor}-%{_target_os}-gcc \
  1473. ppc-%{_vendor}-%{_target_os}-gcc \
  1474. %{_bindir}/ppc-%{_vendor}-%{_target_os}-gcc-%{gcc_version} "
  1475. %endif
  1476. /sbin/update-alternatives \
  1477. --install %{_bindir}/gcc gcc %{_bindir}/gcc-%{gcc_version} 30 \
  1478. --slave %{_bindir}/cc cc %{_bindir}/gcc-%{gcc_version} \
  1479. --slave %{_bindir}/%{gcc_target_platform}-gcc \
  1480. %{gcc_target_platform}-gcc \
  1481. %{_bindir}/%{gcc_target_platform}-gcc-%{gcc_version} \
  1482. --slave %{_bindir}/c89 c89 %{_bindir}/c89-%{gcc_version} \
  1483. --slave %{_bindir}/c99 c99 %{_bindir}/c99-%{gcc_version} $SLAVE
  1484. %posttrans
  1485. # fix broken symlink if it's there
  1486. if [ ! -f %{_bindir}/gcc ] ; then
  1487. /sbin/update-alternatives --auto gcc
  1488. fi
  1489. %postun
  1490. if [ $1 = 0 ]; then
  1491. /sbin/update-alternatives --remove gcc %{_bindir}/gcc-%{gcc_version}
  1492. /sbin/update-alternatives --auto gcc
  1493. fi
  1494. %post c++
  1495. /sbin/update-alternatives \
  1496. --install %{_bindir}/g++ g++ %{_bindir}/g++-%{gcc_version} 30 \
  1497. --slave %{_bindir}/c++ c++ %{_bindir}/g++-%{gcc_version} \
  1498. --slave %{_bindir}/%{gcc_target_platform}-g++ \
  1499. %{gcc_target_platform}-g++ \
  1500. %{_bindir}/%{gcc_target_platform}-g++-%{gcc_version} \
  1501. --slave %{_bindir}/%{gcc_target_platform}-c++ \
  1502. %{gcc_target_platform}-c++ \
  1503. %{_bindir}/%{gcc_target_platform}-c++-%{gcc_version}
  1504. %posttrans c++
  1505. # fix broken symlink if it's there
  1506. if [ ! -f %{_bindir}/g++ ] ; then
  1507. /sbin/update-alternatives --auto g++
  1508. fi
  1509. %postun c++
  1510. if [ $1 = 0 ]; then
  1511. /sbin/update-alternatives --remove g++ %{_bindir}/g++-%{gcc_version}
  1512. /sbin/update-alternatives --auto g++
  1513. fi
  1514. %post cpp
  1515. /sbin/update-alternatives \
  1516. --install %{_bindir}/cpp cpp %{_bindir}/cpp-%{gcc_version} 30 \
  1517. --slave /lib/cpp libcpp %{_bindir}/cpp-%{gcc_version}
  1518. %posttrans cpp
  1519. # fix broken symlink if it's there
  1520. if [ ! -f %{_bindir}/cpp ] ; then
  1521. /sbin/update-alternatives --auto cpp
  1522. fi
  1523. %postun cpp
  1524. if [ $1 = 0 ]; then
  1525. /sbin/update-alternatives --remove cpp %{_bindir}/cpp-%{gcc_version}
  1526. /sbin/update-alternatives --auto cpp
  1527. fi
  1528. %post gfortran
  1529. /sbin/update-alternatives \
  1530. --install %{_bindir}/gfortran gfortran %{_bindir}/gfortran-%{gcc_version} 30 \
  1531. --slave %{_bindir}/f95 f95 %{_bindir}/g95-%{gcc_version} \
  1532. --slave %{_bindir}/%{gcc_target_platform}-gfortran \
  1533. %{gcc_target_platform}-gfortran \
  1534. %{_bindir}/%{gcc_target_platform}-gfortran-%{gcc_version}
  1535. %posttrans gfortran
  1536. # fix broken symlink if it's there
  1537. if [ ! -f %{_bindir}/gfortran ] ; then
  1538. /sbin/update-alternatives --auto gfortran
  1539. fi
  1540. %postun gfortran
  1541. if [ $1 = 0 ]; then
  1542. /sbin/update-alternatives --remove gfortran %{_bindir}/gfortran-%{gcc_version}
  1543. /sbin/update-alternatives --auto gfortran
  1544. fi
  1545. %post gnat
  1546. /sbin/update-alternatives \
  1547. --install %{_bindir}/gnat gnat %{_bindir}/gnat-%{gcc_version} 30 \
  1548. --slave %{_bindir}/gnatbind gnatbind %{_bindir}/gnatbind-%{gcc_version} \
  1549. --slave %{_bindir}/gnatbl gnatbl %{_bindir}/gnatbl-%{gcc_version} \
  1550. --slave %{_bindir}/gnatchop gnatchop %{_bindir}/gnatchop-%{gcc_version} \
  1551. --slave %{_bindir}/gnatfind gnatfind %{_bindir}/gnatfind-%{gcc_version} \
  1552. --slave %{_bindir}/gnatgcc gnatgcc %{_bindir}/gcc-%{gcc_version} \
  1553. --slave %{_bindir}/gnatkr gnatkr %{_bindir}/gnatkr-%{gcc_version} \
  1554. --slave %{_bindir}/gnatlink gnatlink %{_bindir}/gnatlink-%{gcc_version} \
  1555. --slave %{_bindir}/gnatls gnatls %{_bindir}/gnatls-%{gcc_version} \
  1556. --slave %{_bindir}/gnatmake gnatmake %{_bindir}/gnatmake-%{gcc_version} \
  1557. --slave %{_bindir}/gnatprep gnatprep %{_bindir}/gnatprep-%{gcc_version} \
  1558. --slave %{_bindir}/gnatxref gnatxref %{_bindir}/gnatxref-%{gcc_version} \
  1559. --slave %{_bindir}/gprmake gprmake %{_bindir}/gprmake-%{gcc_version} \
  1560. %posttrans gnat
  1561. # fix broken symlink if it's there
  1562. if [ ! -f %{_bindir}/gnat ] ; then
  1563. /sbin/update-alternatives --auto gnat
  1564. fi
  1565. %postun gnat
  1566. if [ $1 = 0 ]; then
  1567. /sbin/update-alternatives --remove gnat %{_bindir}/gnat-%{gcc_version}
  1568. /sbin/update-alternatives --auto gnat
  1569. fi
  1570. %post java
  1571. /sbin/update-alternatives \
  1572. --install %{_bindir}/gcj gcj %{_bindir}/gcj-%{gcc_version} 30 \
  1573. --slave %{_bindir}/gjavah gjavah %{_bindir}/gjavah-%{gcc_version} \
  1574. --slave %{_bindir}/gcjh gcjh %{_bindir}/gcjh-%{gcc_version} \
  1575. --slave %{_bindir}/jcf-dump jcf-dump %{_bindir}/jcf-dump-%{gcc_version} \
  1576. --slave %{_bindir}/%{gcc_target_platform}-gcj \
  1577. %{gcc_target_platform}-gcj \
  1578. %{_bindir}/%{gcc_target_platform}-gcj-%{gcc_version}
  1579. %posttrans java
  1580. # fix broken symlink if it's there
  1581. if [ ! -f %{_bindir}/gcj ] ; then
  1582. /sbin/update-alternatives --auto gcj
  1583. fi
  1584. %postun java
  1585. if [ $1 = 0 ]; then
  1586. /sbin/update-alternatives --remove gcj %{_bindir}/gcj-%{gcc_version}
  1587. /sbin/update-alternatives --auto gcj
  1588. fi
  1589. %post -n libgfortran -p /sbin/ldconfig
  1590. %postun -n libgfortran -p /sbin/ldconfig
  1591. %post -n libgnat -p /sbin/ldconfig
  1592. %postun -n libgnat -p /sbin/ldconfig
  1593. %post -n libgomp -p /sbin/ldconfig
  1594. %postun -n libgomp -p /sbin/ldconfig
  1595. %post -n libmudflap -p /sbin/ldconfig
  1596. %postun -n libmudflap -p /sbin/ldconfig
  1597. %post docs
  1598. %if %{build_ada}
  1599. /sbin/install-info \
  1600. --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz
  1601. /sbin/install-info \
  1602. --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz
  1603. /sbin/install-info \
  1604. --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz
  1605. %endif
  1606. for i in gcc cpp gfortran gcj ; do
  1607. /sbin/install-info --info-dir=%{_infodir} %{_infodir}/$i.info.gz
  1608. done
  1609. %preun docs
  1610. if [ $1 = 0 ] ; then
  1611. %if %{build_ada}
  1612. /sbin/install-info --delete \
  1613. --info-dir=%{_infodir} %{_infodir}/gnat_rm.info.gz
  1614. /sbin/install-info --delete \
  1615. --info-dir=%{_infodir} %{_infodir}/gnat_ugn_unw.info.gz
  1616. /sbin/install-info --delete \
  1617. --info-dir=%{_infodir} %{_infodir}/gnat-style.info.gz
  1618. %endif
  1619. for i in gcc cpp gfortran gcj; do
  1620. /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/$i.info.gz
  1621. done
  1622. fi
  1623. #####################################################################
  1624. %files -f %{name}.lang
  1625. %defattr(-,root,root)
  1626. ##VINE##%{_prefix}/bin/cc
  1627. %{_prefix}/bin/c89-%{gcc_version}
  1628. %{_prefix}/bin/c99-%{gcc_version}
  1629. %{_prefix}/bin/gcc-%{gcc_version}
  1630. ##VINE##%{_prefix}/bin/gcov
  1631. ##VINE##%{_prefix}/bin/protoize
  1632. ##VINE##%{_prefix}/bin/unprotoize
  1633. %ifarch ppc
  1634. %if %{biarch_on_ppc32}
  1635. %{_prefix}/bin/%{_target_platform}-gcc-%{gcc_version}
  1636. %endif
  1637. %endif
  1638. %ifarch sparc64 sparcv9
  1639. %{_prefix}/bin/sparc-%{_vendor}-%{_target_os}-gcc-%{gcc_version}
  1640. %endif
  1641. %ifarch ppc64
  1642. %{_prefix}/bin/ppc-%{_vendor}-%{_target_os}-gcc-%{gcc_version}
  1643. %endif
  1644. %{_prefix}/bin/%{gcc_target_platform}-gcc-%{gcc_version}
  1645. ##VINE##%{_mandir}/man1/gcc.1*
  1646. ##VINE##%{_mandir}/man1/gcov.1*
  1647. ##VINE##%{_infodir}/gcc*
  1648. %dir %{_prefix}/lib/gcc
  1649. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1650. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1651. %dir %{_prefix}/libexec/gcc
  1652. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1653. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1654. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include
  1655. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/SYSCALLS.c.X
  1656. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/stddef.h
  1657. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/stdarg.h
  1658. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/stdfix.h
  1659. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/varargs.h
  1660. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/float.h
  1661. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/limits.h
  1662. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/stdbool.h
  1663. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/iso646.h
  1664. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/syslimits.h
  1665. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/unwind.h
  1666. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/omp.h
  1667. %ifarch %{ix86} x86_64
  1668. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/mmintrin.h
  1669. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/mmintrin-common.h
  1670. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/xmmintrin.h
  1671. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/emmintrin.h
  1672. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/pmmintrin.h
  1673. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/tmmintrin.h
  1674. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/ammintrin.h
  1675. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/smmintrin.h
  1676. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/nmmintrin.h
  1677. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/bmmintrin.h
  1678. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/wmmintrin.h
  1679. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/immintrin.h
  1680. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/avxintrin.h
  1681. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/x86intrin.h
  1682. #{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/fma4intrin.h
  1683. #{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/xopintrin.h
  1684. #{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/lwpintrin.h
  1685. #{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/abmintrin.h
  1686. #{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/popcntintrin.h
  1687. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/mm_malloc.h
  1688. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/mm3dnow.h
  1689. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/cpuid.h
  1690. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/cross-stdarg.h
  1691. %endif
  1692. %ifarch ia64
  1693. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/ia64intrin.h
  1694. %endif
  1695. %ifarch ppc ppc64
  1696. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/ppc-asm.h
  1697. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/altivec.h
  1698. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/spe.h
  1699. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/paired.h
  1700. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/ppu_intrinsics.h
  1701. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/si2vmx.h
  1702. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/spu2vmx.h
  1703. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/vec_types.h
  1704. %endif
  1705. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/collect2
  1706. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/crt*.o
  1707. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcc.a
  1708. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcov.a
  1709. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcc_eh.a
  1710. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcc_s.so
  1711. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgomp.spec
  1712. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgomp.a
  1713. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgomp.so
  1714. %ifarch sparcv9 ppc
  1715. %if %{biarch_on_ppc32}
  1716. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64
  1717. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/crt*.o
  1718. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcc.a
  1719. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcov.a
  1720. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcc_eh.a
  1721. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcc_s.so
  1722. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgomp.a
  1723. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgomp.so
  1724. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libmudflap.a
  1725. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libmudflapth.a
  1726. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libmudflap.so
  1727. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libmudflapth.so
  1728. %endif
  1729. %endif
  1730. %ifarch %{multilib_64_archs}
  1731. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32
  1732. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/crt*.o
  1733. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcc.a
  1734. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcov.a
  1735. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcc_eh.a
  1736. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcc_s.so
  1737. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgomp.a
  1738. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgomp.so
  1739. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libmudflap.a
  1740. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libmudflapth.a
  1741. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libmudflap.so
  1742. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libmudflapth.so
  1743. %endif
  1744. %ifarch sparcv9 sparc64 ppc ppc64
  1745. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflap.a
  1746. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflapth.a
  1747. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflap.so
  1748. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflapth.so
  1749. %endif
  1750. %dir %{_prefix}/libexec/getconf
  1751. %{_prefix}/libexec/getconf/default
  1752. %doc gcc/README* rpm.doc/changelogs/gcc/ChangeLog* gcc/COPYING*
  1753. %files cpp -f cpplib.lang
  1754. %defattr(-,root,root)
  1755. /lib/cpp
  1756. %{_prefix}/bin/cpp-%{gcc_version}
  1757. ##VINE##%{_mandir}/man1/cpp.1*
  1758. ##VINE##%{_infodir}/cpp*
  1759. %dir %{_prefix}/libexec/gcc
  1760. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1761. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1762. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/cc1
  1763. %files -n libgcc
  1764. %defattr(-,root,root)
  1765. %if %{stock_tarball}
  1766. /%{_lib}/libgcc_s-%{gcc_version}.so.1
  1767. %ifarch %{multilib_64_archs}
  1768. /lib/libgcc_s-%{gcc_version}.so.1
  1769. %endif
  1770. %else
  1771. /%{_lib}/libgcc_s-%{gcc_version}-%{DATE}.so.1
  1772. %ifarch %{multilib_64_archs}
  1773. /lib/libgcc_s-%{gcc_version}-%{DATE}.so.1
  1774. %endif
  1775. %endif
  1776. /%{_lib}/libgcc_s.so.1
  1777. %ifarch %{multilib_64_archs}
  1778. /lib/libgcc_s.so.1
  1779. %endif
  1780. %{_prefix}/sbin/libgcc_post_upgrade
  1781. %doc gcc/COPYING.LIB
  1782. %files c++
  1783. %defattr(-,root,root)
  1784. %{_prefix}/bin/%{gcc_target_platform}-*++-%{gcc_version}
  1785. %{_prefix}/bin/g++-%{gcc_version}
  1786. %{_prefix}/bin/c++-%{gcc_version}
  1787. ##VINE##%{_mandir}/man1/g++.1*
  1788. %dir %{_prefix}/lib/gcc
  1789. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1790. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1791. %dir %{_prefix}/libexec/gcc
  1792. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1793. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1794. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/cc1plus
  1795. %ifarch sparcv9 ppc
  1796. %if %{biarch_on_ppc32}
  1797. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64
  1798. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libstdc++.so
  1799. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libstdc++.a
  1800. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libsupc++.a
  1801. %endif
  1802. %endif
  1803. %ifarch %{multilib_64_archs}
  1804. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32
  1805. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libstdc++.so
  1806. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libstdc++.a
  1807. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libsupc++.a
  1808. %endif
  1809. %ifarch sparcv9 ppc %{multilib_64_archs}
  1810. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libstdc++.so
  1811. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libsupc++.a
  1812. %endif
  1813. %ifarch sparc sparc64 ppc ppc64
  1814. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libstdc++.a
  1815. %endif
  1816. %doc rpm.doc/changelogs/gcc/cp/ChangeLog*
  1817. #-f libstdc++.lang
  1818. %files -n libstdc++
  1819. %defattr(-,root,root)
  1820. %{_prefix}/%{_lib}/libstdc++.so.6*
  1821. %ifarch x86_64
  1822. %{_prefix}/lib/libstdc++.so.6*
  1823. %endif
  1824. %files -n libstdc++-devel
  1825. %defattr(-,root,root)
  1826. %dir %{_prefix}/include/c++
  1827. %dir %{_prefix}/include/c++/%{gcc_version}
  1828. %{_prefix}/include/c++/%{gcc_version}/[^gjos]*
  1829. %{_prefix}/include/c++/%{gcc_version}/os*
  1830. %{_prefix}/include/c++/%{gcc_version}/s[^u]*
  1831. %dir %{_prefix}/lib/gcc
  1832. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1833. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1834. %ifarch sparcv9 ppc
  1835. %if %{biarch_on_ppc32}
  1836. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32
  1837. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32/libstdc++.a
  1838. %endif
  1839. %endif
  1840. %ifarch sparc64 ppc64
  1841. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64
  1842. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64/libstdc++.a
  1843. %endif
  1844. %ifnarch sparc sparc64 ppc ppc64
  1845. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libstdc++.a
  1846. %endif
  1847. %ifnarch sparc ppc %{multilib_64_archs}
  1848. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libstdc++.so
  1849. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libsupc++.a
  1850. %endif
  1851. %doc rpm.doc/changelogs/libstdc++-v3/ChangeLog* libstdc++-v3/README*
  1852. %if %{build_libstdcxx_docs}
  1853. %files -n libstdc++-docs
  1854. %defattr(-,root,root)
  1855. %{_mandir}/man3/*
  1856. %doc rpm.doc/libstdc++-v3/html
  1857. %endif
  1858. %files objc
  1859. %defattr(-,root,root)
  1860. %dir %{_prefix}/lib/gcc
  1861. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1862. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1863. %dir %{_prefix}/libexec/gcc
  1864. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1865. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1866. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include
  1867. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/objc
  1868. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/cc1obj
  1869. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libobjc.a
  1870. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libobjc.so
  1871. %ifarch sparcv9 ppc
  1872. %if %{biarch_on_ppc32}
  1873. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64
  1874. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libobjc.a
  1875. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libobjc.so
  1876. %endif
  1877. %endif
  1878. %ifarch %{multilib_64_archs}
  1879. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32
  1880. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libobjc.a
  1881. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libobjc.so
  1882. %endif
  1883. %doc rpm.doc/objc/*
  1884. %doc libobjc/THREADS* rpm.doc/changelogs/libobjc/ChangeLog*
  1885. %files objc++
  1886. %defattr(-,root,root)
  1887. %dir %{_prefix}/libexec/gcc
  1888. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1889. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1890. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/cc1objplus
  1891. %files -n libobjc
  1892. %defattr(-,root,root)
  1893. %{_prefix}/%{_lib}/libobjc.so.2*
  1894. %ifarch x86_64
  1895. %{_prefix}/lib/libobjc.so.2*
  1896. %endif
  1897. %files gfortran
  1898. %defattr(-,root,root)
  1899. %{_prefix}/bin/gfortran-%{gcc_version}
  1900. %{_prefix}/bin/f95
  1901. ##VINE##%{_mandir}/man1/gfortran.1*
  1902. ##VINE##%{_infodir}/gfortran*
  1903. %{_prefix}/bin/%{gcc_target_platform}-gfortran-%{gcc_version}
  1904. %dir %{_prefix}/lib/gcc
  1905. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1906. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1907. %dir %{_prefix}/libexec/gcc
  1908. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1909. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1910. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/finclude
  1911. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/finclude/omp_lib.h
  1912. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/finclude/omp_lib.f90
  1913. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/finclude/omp_lib.mod
  1914. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/finclude/omp_lib_kinds.mod
  1915. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/f951
  1916. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgfortranbegin.a
  1917. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgfortran.a
  1918. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgfortran.so
  1919. %ifarch sparcv9 ppc
  1920. %if %{biarch_on_ppc32}
  1921. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64
  1922. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgfortranbegin.a
  1923. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgfortran.a
  1924. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgfortran.so
  1925. %endif
  1926. %endif
  1927. %ifarch %{multilib_64_archs}
  1928. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32
  1929. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgfortranbegin.a
  1930. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgfortran.a
  1931. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgfortran.so
  1932. %endif
  1933. %doc rpm.doc/gfortran/*
  1934. %files -n libgfortran
  1935. %defattr(-,root,root)
  1936. %{_prefix}/%{_lib}/libgfortran.so.3*
  1937. %ifarch x86_64
  1938. %{_prefix}/lib/libgfortran.so.3*
  1939. %endif
  1940. %if %{build_java}
  1941. %files java
  1942. %defattr(-,root,root)
  1943. %{_prefix}/bin/gcj-%{gcc_version}
  1944. %{_prefix}/bin/gjavah-%{gcc_version}
  1945. %{_prefix}/bin/gcjh-%{gcc_version}
  1946. %{_prefix}/bin/jcf-dump-%{gcc_version}
  1947. %{_prefix}/bin/%{gcc_target_platform}-gcj-%{gcc_version}
  1948. ##VINE##%{_mandir}/man1/gcj.1*
  1949. ##VINE##%{_mandir}/man1/gcjh.1*
  1950. ##VINE##%{_mandir}/man1/gjnih.1*
  1951. ##VINE##%{_mandir}/man1/jcf-dump.1*
  1952. ##VINE##%{_mandir}/man1/jv-scan.1*
  1953. ##VINE##%{_infodir}/gcj*
  1954. ##VINE##%{_prefix}/bin/%{gcc_target_platform}-gcj-%{gcc_version}
  1955. ##VINE##%{_prefix}/bin/%{gcc_target_platform}-gcjh-%{gcc_version}
  1956. %dir %{_prefix}/libexec/gcc
  1957. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  1958. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  1959. %dir %{_prefix}/lib/gcc
  1960. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  1961. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  1962. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/jc1
  1963. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/ecj1
  1964. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/jvgenmain
  1965. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj.so
  1966. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj-tools.so
  1967. %ifarch sparcv9 sparc64 ppc ppc64
  1968. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj_bc.so
  1969. %endif
  1970. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgij.so
  1971. %ifarch sparcv9 ppc
  1972. %if %{biarch_on_ppc32}
  1973. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64
  1974. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcj.so
  1975. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcj-tools.so
  1976. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgcj_bc.so
  1977. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/64/libgij.so
  1978. %endif
  1979. %endif
  1980. %ifarch %{multilib_64_archs}
  1981. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32
  1982. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcj.so
  1983. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcj-tools.so
  1984. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgcj_bc.so
  1985. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/32/libgij.so
  1986. %endif
  1987. %doc rpm.doc/changelogs/gcc/java/ChangeLog*
  1988. %files -n libgcj
  1989. %defattr(-,root,root)
  1990. %{_prefix}/bin/jv-convert-%{gcc_version}
  1991. %{_prefix}/bin/gij-%{gcc_version}
  1992. %{_prefix}/bin/gjar-%{gcc_version}
  1993. #{_prefix}/bin/fastjar
  1994. #{_prefix}/bin/grepjar
  1995. %{_prefix}/bin/grmic-%{gcc_version}
  1996. %{_prefix}/bin/grmid-%{gcc_version}
  1997. %{_prefix}/bin/grmiregistry-%{gcc_version}
  1998. %{_prefix}/bin/gtnameserv-%{gcc_version}
  1999. %{_prefix}/bin/gkeytool-%{gcc_version}
  2000. %{_prefix}/bin/gorbd-%{gcc_version}
  2001. %{_prefix}/bin/gserialver-%{gcc_version}
  2002. %{_prefix}/bin/gcj-dbtool-%{gcc_version}
  2003. %if %{include_gappletviewer}
  2004. %{_prefix}/bin/gappletviewer
  2005. %endif
  2006. %{_prefix}/bin/gjarsigner-%{gcc_version}
  2007. ##VINE##%{_mandir}/man1/fastjar.1*
  2008. ##VINE##%{_mandir}/man1/grepjar.1*
  2009. ##VINE##%{_mandir}/man1/jv-convert.1*
  2010. ##VINE##%{_mandir}/man1/gij.1*
  2011. ##VINE##%{_mandir}/man1/grmic.1*
  2012. ##VINE##%{_mandir}/man1/grmiregistry.1*
  2013. ##VINE##%{_mandir}/man1/gcj-dbtool.1*
  2014. ##VINE##%{_infodir}/fastjar*
  2015. %{_prefix}/%{_lib}/libgcj.so.*
  2016. %{_prefix}/%{_lib}/libgcj-tools.so.*
  2017. %{_prefix}/%{_lib}/libgcj_bc.so.*
  2018. %if %{biarch_on_ppc32}
  2019. %{_prefix}/%{_lib}/libgcj_bc.so.*
  2020. %endif
  2021. %{_prefix}/%{_lib}/libgij.so.*
  2022. %dir %{_prefix}/%{_lib}/gcj-%{gcc_version}
  2023. %{_prefix}/%{_lib}/gcj-%{version}/libgtkpeer.so
  2024. %{_prefix}/%{_lib}/gcj-%{version}/libgjsmalsa.so
  2025. %{_prefix}/%{_lib}/gcj-%{version}/libjawt.so
  2026. %if %{include_gappletviewer}
  2027. %{_prefix}/%{_lib}/gcj-%{version}/libgcjwebplugin.so
  2028. %endif
  2029. %{_prefix}/%{_lib}/gcj-%{version}/libjvm.so
  2030. %{_prefix}/%{_lib}/gcj-%{version}/libjavamath.so
  2031. %dir %{_prefix}/share/java
  2032. %{_prefix}/share/java/[^sl]*
  2033. %{_prefix}/share/java/libgcj-%{version}.jar
  2034. %dir %{_prefix}/%{_lib}/security
  2035. %config(noreplace) %{_prefix}/%{_lib}/security/classpath.security-%{gcc_version}
  2036. %{_prefix}/%{_lib}/logging.properties
  2037. %dir %{_prefix}/%{_lib}/gcj-%{gcc_version}/classmap.db.d
  2038. %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) %{_prefix}/%{_lib}/gcj-%{gcc_version}/classmap.db
  2039. ##VINE##%doc rpm.doc/README.libgcjwebplugin.so
  2040. %files -n libgcj-devel
  2041. %defattr(-,root,root)
  2042. #{_prefix}/bin/addr2name.awk
  2043. %dir %{_prefix}/lib/gcc
  2044. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  2045. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  2046. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include
  2047. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/gcj
  2048. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/jawt.h
  2049. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/jawt_md.h
  2050. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/jni.h
  2051. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/jni_md.h
  2052. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/jvmpi.h
  2053. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj.spec
  2054. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj.so
  2055. %ifarch sparcv9 ppc
  2056. %if %{biarch_on_ppc32}
  2057. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32
  2058. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32/libgcj_bc.so
  2059. %endif
  2060. %endif
  2061. %ifarch sparc64 ppc64
  2062. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64
  2063. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64/libgcj_bc.so
  2064. %endif
  2065. %ifnarch sparcv9 sparc64 ppc ppc64
  2066. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libgcj_bc.so
  2067. %endif
  2068. %dir %{_prefix}/include/c++
  2069. %dir %{_prefix}/include/c++/%{gcc_version}
  2070. %{_prefix}/include/c++/%{gcc_version}/[gj]*
  2071. %{_prefix}/include/c++/%{gcc_version}/org
  2072. %{_prefix}/include/c++/%{gcc_version}/sun
  2073. %{_prefix}/%{_lib}/pkgconfig/libgcj-*.pc
  2074. ##VINE## %doc rpm.doc/boehm-gc/* rpm.doc/fastjar/* rpm.doc/libffi/*
  2075. %doc rpm.doc/boehm-gc/* rpm.doc/libffi/*
  2076. %doc rpm.doc/libjava/*
  2077. %files -n libgcj-src
  2078. %defattr(-,root,root)
  2079. %dir %{_prefix}/share/java
  2080. %{_prefix}/share/java/src*.zip
  2081. %{_prefix}/share/java/libgcj-tools-%{version}.jar
  2082. %endif
  2083. %if %{build_ada}
  2084. %files gnat
  2085. %defattr(-,root,root)
  2086. %{_prefix}/bin/gnat*
  2087. %{_prefix}/bin/gpr*
  2088. ##VINE##%{_infodir}/gnat*
  2089. %dir %{_prefix}/lib/gcc
  2090. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  2091. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  2092. %dir %{_prefix}/libexec/gcc
  2093. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}
  2094. %dir %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}
  2095. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/adainclude
  2096. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/adalib
  2097. %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/gnat1
  2098. %doc rpm.doc/changelogs/gcc/ada/ChangeLog*
  2099. %files -n libgnat
  2100. %defattr(-,root,root)
  2101. %{_prefix}/%{_lib}/libgnat-*.so
  2102. %{_prefix}/%{_lib}/libgnarl-*.so
  2103. %endif
  2104. %files -n libgomp
  2105. %defattr(-,root,root)
  2106. %{_prefix}/%{_lib}/libgomp.so.1*
  2107. %ifarch x86_64
  2108. %{_prefix}/lib/libgomp.so.1*
  2109. %endif
  2110. %doc rpm.doc/changelogs/libgomp/ChangeLog*
  2111. %files -n libmudflap
  2112. %defattr(-,root,root)
  2113. %{_prefix}/%{_lib}/libmudflap.so.0*
  2114. %{_prefix}/%{_lib}/libmudflapth.so.0*
  2115. %ifarch x86_64
  2116. %{_prefix}/lib/libmudflap.so.0*
  2117. %{_prefix}/lib/libmudflapth.so.0*
  2118. %endif
  2119. %files -n libmudflap-devel
  2120. %defattr(-,root,root)
  2121. %dir %{_prefix}/lib/gcc
  2122. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}
  2123. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}
  2124. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include
  2125. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/include/mf-runtime.h
  2126. %ifarch sparcv9 ppc
  2127. %if %{biarch_on_ppc32}
  2128. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32
  2129. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32/libmudflap.a
  2130. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib32/libmudflapth.a
  2131. %endif
  2132. %endif
  2133. %ifarch sparc64 ppc64
  2134. %dir %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64
  2135. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64/libmudflap.a
  2136. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/lib64/libmudflapth.a
  2137. %endif
  2138. %ifnarch sparcv9 sparc64 ppc ppc64
  2139. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflap.a
  2140. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflapth.a
  2141. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflap.so
  2142. %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/libmudflapth.so
  2143. %endif
  2144. %doc rpm.doc/changelogs/libmudflap/ChangeLog*
  2145. %files tools
  2146. %defattr(-,root,root)
  2147. %doc README* COPYING COPYING.LIB
  2148. %{_bindir}/gcov
  2149. %{_bindir}/protoize
  2150. %{_bindir}/unprotoize
  2151. %files docs
  2152. %defattr(-,root,root)
  2153. %doc README* COPYING COPYING.LIB
  2154. %{_infodir}/*
  2155. %{_mandir}/*/*
  2156. %changelog
  2157. * Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.4.5-2
  2158. - add BR: glibc-static
  2159. * Sun Mar 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.5-1
  2160. - new upstream release
  2161. - used %%posttrans instead of %%triggerpostun
  2162. * Sun Sep 19 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.4.3-9
  2163. - used alternatives %%{_prefix}/%%{_lib}/security/classpath.security
  2164. * Fri Aug 13 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.4.3-8
  2165. - rebuilt with gcc-java-4.4.3-7
  2166. * Sun Aug 1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.4.3-7
  2167. - used %%{_lib} macros for classpath.security and logging.properties (libgcj)
  2168. - this release needs to build --with java_bootstrap option
  2169. * Sun Jul 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.4.3-6
  2170. - bootstrapped java package
  2171. - this release needs to build --with java_bootstrap option
  2172. * Wed Apr 7 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.4.3-5
  2173. - updated to 20100401 (svn r157910)
  2174. * Tue Apr 6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.4.3-4
  2175. - fix configure flags on ppc again (remove --with-cpu=750)
  2176. * Mon Feb 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.4.3-3
  2177. - fix configure flags on ppc
  2178. * Mon Jan 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-2
  2179. - rebuilt with new toolchain
  2180. - fixed %%install and %%file libgomp section (Thanks to kenta-san)
  2181. - added Provides: libstdc++34 to libstdc++
  2182. * Sun Jan 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-1
  2183. - new upstream release
  2184. * Fri Dec 26 2008 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.2-21
  2185. - added BuildRequires: compat32-glibc-devel for x86_64 arch
  2186. * Sat Dec 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1.2-20
  2187. - remove Requires: %{_prefox}/%{_lib}/libz.so from libgcj-devel
  2188. * Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.1.2-19
  2189. - rebuilt with binutils-2.18.50.0.6 and glibc-2.8
  2190. * Tue Jul 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1.2-18
  2191. - updated to 4.1.3 prerelease 20080708 (gcc-4_1-branch r137614)
  2192. - new versioning policy
  2193. - require gecko-devel instead of firefox-devel
  2194. * Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl17
  2195. - updated to 4.1.3 prerelease 20080204 (gcc-4_1-branch r132101)
  2196. * Thu Dec 27 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl16
  2197. - updated to 4.1.3 prerelease 20071221 (gcc-4_1-branch r131115)
  2198. * Tue Dec 18 2007 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.2-0vl15
  2199. - updated %%files section to include 32bit libraries for x86_64
  2200. * Sat Dec 15 2007 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.2-0vl14
  2201. - added BuildRequires: mpfr-devel
  2202. * Sat Oct 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl13
  2203. - updated to 4.1.3 prerelease 20070923 (gcc-4_1-branch r128704)
  2204. * Wed Jul 04 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl12
  2205. - updated to 4.1.3 prerelease 20070703 (gcc-4_1-branch r126255)
  2206. - PR target/28307, boehm-gc/21940, boehm-gc/21942, target/32389,
  2207. c++/31809, c++/31806, inline-asm/32109, middle-end/32285,
  2208. rtl-optimization/28011, tree-optimization/32353, target/32163
  2209. * Thu May 31 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl11
  2210. - Sorry, put a wrong srpm, it was just my mistake. Put correct version.
  2211. * Mon May 28 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl10
  2212. - updated to 4.1.3 prerelease 20070524 (gcc-4_1-branch r125017)
  2213. - PR libfortran/31964, target/31701, target/31480, target/31022
  2214. - disguise version_string[], such as
  2215. "4.1.2 (4.1.3 prelease 20070524) (Vine Linux 4.1.2-0vl10)"
  2216. * Sun May 20 2007 NAKAMURA Kenta <kenta@vinelinux.org> 4.1.2-0vl9
  2217. - enable Patch5: gcc41-java-nomulti.patch
  2218. - remove obsoleted work around which building libgcj_bc.so
  2219. * Sat May 19 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl8
  2220. - updated to 4.1.3 prerelease 20070517 (gcc-4_1-branch r124799)
  2221. * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl7
  2222. - add Patch101
  2223. (long double 128bit by default on alpha/ppc/sparc/s390 targets)
  2224. http://sources.redhat.com/bugzilla/show_bug.cgi?id=2749
  2225. which was originally derived from the following patches:
  2226. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25864#c13
  2227. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25864#c14
  2228. - add --disable-multilib configure option for no-biarch builds on ppc
  2229. - fix spec typo of Daisuk SUZUKI's -mcpu removal on 4.1.2-0vl5
  2230. * Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl6
  2231. - enable Patch19 now
  2232. * Wed May 09 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1.2-0vl5
  2233. - add Patch100 to add -mtune=generic option (from MDV)
  2234. - remove -mcpu option from OPT_FLAGS
  2235. - use bootstrap-lean instead of profiledbootstrap
  2236. - enable Patch10 to add MNI support (SSE3)
  2237. * Mon May 07 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl4
  2238. - yet another minor fix (don't obsolete gcc3-* packages)
  2239. * Mon May 07 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl3
  2240. - one more minor fix (libgfortran don't obsolete libf2c)
  2241. * Mon May 07 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl2
  2242. - Oops, fixed one small typo
  2243. * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl1
  2244. - rebuild
  2245. * Wed May 02 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 4.1.2-0vl0
  2246. - initial build for VineSeed
  2247. - based on FC 4.1.1-30 and VineSeed 3.3.6-0vl8
  2248. - updated to 4.1.2 upstream release with most FC patches omitted (TODOs)
  2249. * Wed Oct 11 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-30
  2250. - update from gcc-4_1-branch (-r117464:117629)
  2251. - PRs c++/28302, c++/28349, c++/28450, c++/29002, libstdc++/29095,
  2252. libstdc++/29354, libstdc++/29368, target/28490
  2253. - fix gnu.xml.transform.TransformerImpl (Tom Tromey, #208854,
  2254. PR classpath/29362)
  2255. * Fri Oct 6 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-29
  2256. - update from gcc-4_1-branch (-r117266:117464)
  2257. - PRs bootstrap/26764, bootstrap/27334, c++/29080, c++/29138, c++/29226,
  2258. c/27489, c/27490, debug/28980, fortran/18791, libfortran/18791,
  2259. middle-end/28862, objc/29195, other/25035, tree-opt/28952
  2260. - fix s390{,x} address legitimization with TLS symbols (Angel Nunez
  2261. Mencias)
  2262. - fix -fno-automatic with Fortran auto arrays with non-constant size
  2263. (#203928, PR fortran/28415)
  2264. - fix char and short __sync_fetch_and_XXX (PR target/28924)
  2265. - fix emitting of vector constants with incomplete initializers (PR c/29091)
  2266. - fix ICE with multiple exit loop and -ftree-loop-linear
  2267. (#208935, PR tree-optimization/29290)
  2268. * Sat Sep 30 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-28
  2269. - fix i386/x86_64 legitimize_pic_address with TLS symbols (PR target/29198)
  2270. - fix gimplification of post-increment with side-effects on the inner
  2271. expression (PR c/29154)
  2272. * Thu Sep 28 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-27
  2273. - update from gcc-4_1-branch (-r117225:117266)
  2274. - PR target/29230
  2275. - restrict single entry mem{{,p}cpy,move,set} optimization to vars
  2276. and components thereof (PR middle-end/29272)
  2277. - fix java.util.Locale (Tom Tromey, #201712)
  2278. * Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-26
  2279. - update from gcc-4_1-branch (-r117162:117225)
  2280. - PRs classpath/28661, libgcj/29178, libstdc++/29179, libstdc++/29224
  2281. - fix unwind info generation, broken in gcc-4.1.1-21
  2282. (Roger Sayle, PR debug/29132)
  2283. * Sat Sep 23 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-25
  2284. - update from gcc-4_1-branch (-r117069:117162)
  2285. - PRs c++/28996, c++/29087, middle-end/26983
  2286. - fix -fprofile-use with anonymous namespaces (Jan Hubicka, PRs profile/20815,
  2287. profile/26399)
  2288. - fix #pragma omp parallel and #pragma omp section that call nested
  2289. functions (PRs middle-end/25261, middle-end/28790)
  2290. * Wed Sep 20 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-24
  2291. - update from gcc-4_1-branch (-r117000:117069)
  2292. - PRs fortran/21918, fortran/28526, fortran/28817, fortran/29060,
  2293. fortran/29101, java/28754, java/28892, java/29013,
  2294. middle-end/27226, middle-end/4520, tree-optimization/28900
  2295. - fix java.utils.logging.Logger (Mark Wielaard, #207111)
  2296. - fix gnu.javax.net.ssl.provider.SSLSocket (Tom Tromey, #206904)
  2297. - add support for Fortran OpenMP conditional inclusion (PR fortran/29097)
  2298. - add some -D_FORTIFY_SOURCE compile time strncat buffer overflow checks
  2299. * Sun Sep 17 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-23
  2300. - update from gcc-4_1-branch (-r116958:117000)
  2301. - PRs fortran/29051, target/28946
  2302. - fix single entry mem{{,p}cpy,move,set} optimization (Andrew Pinski,
  2303. PR tree-opt/29059)
  2304. * Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-22
  2305. - update from gcc-4_1-branch (-r116778:116958)
  2306. - PRs ada/21952, ada/29025, c++/26957, fortran/28890, fortran/28923,
  2307. fortran/28959, libfortran/28890, libfortran/28923, libfortran/28947,
  2308. middle-end/28493, other/23541, other/26507, rtl-optimization/28243,
  2309. rtl-optimization/28634, rtl-optimization/28636, rtl-optimization/28726,
  2310. target/13685, target/26504, target/27537, target/27681, target/28621,
  2311. target/29006, testsuite/28950, testsuite/29007
  2312. - fix #pragma omp atomic (PR middle-end/28046)
  2313. - speed up dominance frontiers calculation (Jan Hubicka)
  2314. - add README.libgcjwebplugin.so to libgcj %%doc (Tom Fitzsimmons)
  2315. - fix gcc-gfortran %%doc (#206333)
  2316. - fix gcc-debuginfo (#205500)
  2317. * Fri Sep 8 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-21
  2318. - update from gcc-4_1-branch (-r116498:116778)
  2319. - PRs c++/19809, c++/26102, c++/26195, c++/26571, c++/26670, c++/26671,
  2320. c++/26696, c++/26917, c++/28860, c++/28878, c++/28886, fortran/20067,
  2321. fortran/24866, fortran/25077, fortran/25102, fortran/28005,
  2322. fortran/28873, fortran/28885, fortran/28908, libfortran/28005,
  2323. middle-end/27724, middle-end/28814, other/22313,
  2324. rtl-optimization/27616, rtl-optimization/28386, target/24367
  2325. - add primitive class object symbols to libgcj_bc.so (Tom Tromey,
  2326. PR libgcj/28698)
  2327. - optimize single entry memcpy/mempcpy/memmove/memset already at the tree
  2328. level (PR middle-end/27567)
  2329. - add dependencies to *-devel subpackages, so that e.g. ppc64
  2330. libstdc++-devel requires 64-bit libstdc++, similarly for libgcj-devel
  2331. and libgcj/zlib-devel
  2332. * Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-20
  2333. - update from gcc-4_1-branch (-r116389:116498)
  2334. - PRs c++/28056, c++/28058, c++/28595, c++/28853, c/27558,
  2335. c/27893, c/28299, c/28418, driver/27622, libfortran/28452,
  2336. libfortran/28542, target/27075
  2337. - optimize A / (B << N) where A and B is positive and B is a power of two
  2338. (Alan Modra, #195924, PR rtl-optimization/26026)
  2339. - fix attribute handling in C++ (Jason Merrill, #204277, #204035,
  2340. PRs c++/28659, c++/28863)
  2341. * Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-19
  2342. - update from gcc-4_1-branch (-r116223:116389)
  2343. - PRs c++/23372, c++/27714, c++/28346, c++/28385, fortran/18111,
  2344. fortran/20886, fortran/25217, fortran/25828, fortran/28425,
  2345. fortran/28496, fortran/28601, fortran/28630, fortran/28660,
  2346. fortran/28735, fortran/28762, fortran/28771, fortran/28788,
  2347. libstdc++/28765, target/27565
  2348. - another big Java merge from the trunk (Tom Fitzsimmons)
  2349. - fix ICE in add_reg_br_prob_note (PR middle-end/28683)
  2350. * Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-18
  2351. - update from gcc-4_1-branch (-r116176:116223)
  2352. - PRs c++/28593, c++/28606, c++/28710, c/27697, middle-end/20256,
  2353. middle-end/25211, middle-end/26435
  2354. - don't waste .rodata space when copying from const array with large
  2355. entries (PR middle-end/28755)
  2356. - fix --combine with anonymous structures in unions (Alexandre Oliva,
  2357. PR c/27898)
  2358. - rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
  2359. (#203001)
  2360. * Wed Aug 16 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-17
  2361. - update from gcc-4_1-branch (-r116082:116176)
  2362. - PRs c++/27894, c++/28677, c/28649, middle-end/28075,
  2363. rtl-optimization/23454
  2364. - merge gomp fixes from the trunk (-r116152:116154)
  2365. - PRs middle-end/28713, middle-end/28724
  2366. - add -march=geode and -mtune=geode support (Vlad Makarov)
  2367. - use %gs rather than %fs register on x86_64 with
  2368. -mcmodel=kernel -fstack-protector (Arjan van de Ven, #202842)
  2369. - don't create jar manifest in libgcj-tools-4.*.jar (#200887)
  2370. - externally_visible attribute fixes (Jan Hubicka, PRs c/25795, c++/27369)
  2371. - --combine fixes for aggregates with attributes (PRs c/28706, c/28712)
  2372. - further externally_visible attr fixes (PR c/28744)
  2373. - fix invalid token pasting error message (PR preprocessor/28709)
  2374. - obey OpenMP 2.5 chapter 4 env var requirements (whitespace rules
  2375. and case insensitivity in the env vars; PR libgomp/28725)
  2376. - fix OPT_FLAGS on sparc
  2377. * Sat Aug 12 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-16
  2378. - fix multilib conflict in libgcj-tools-4.1.1.jar (#200887)
  2379. * Fri Aug 11 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-15
  2380. - update from gcc-4_1-branch (-r115877:116082)
  2381. - PRs c++/27508, c++/28148, c++/28250, c++/28256, c++/28257, c++/28259,
  2382. c++/28267, c++/28274, c++/28347, c++/28432, c++/28557, c++/28594,
  2383. c++/28637, c++/28638, c++/28639, c++/28640, c++/28641, c/27721,
  2384. c/28136, fortran/27981, fortran/28548, fortran/28590,
  2385. middle-end/28651, rtl-optimization/27291, rtl-optimization/28221,
  2386. target/27566, target/27827
  2387. - fix Fortran ICE with nested function (Paul Thomas, #200618,
  2388. PR fortran/28600)
  2389. * Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-14
  2390. - update from gcc-4_1-branch (-r115644:115877)
  2391. - PRs c++/27572, c++/27668, c++/27962, c++/28025, c++/28258, c++/28523,
  2392. debug/25468, fortran/20892, fortran/27874, fortran/28129,
  2393. fortran/28439, libgfortran/28335, libgfortran/28339,
  2394. middle-end/28402, middle-end/28403, middle-end/28473,
  2395. target/27287, target/28247, tree-optimization/26719,
  2396. tree-optimization/27639, tree-optimization/27795,
  2397. tree-optimization/28029, tree-optimization/28238
  2398. - BuildRequire firefox-devel instead of mozilla-devel
  2399. * Tue Jul 25 2006 Alexandre Oliva <aoliva@redhat.com> 4.1.1-13
  2400. - backport fix by Andrew Haley for build problems related with the
  2401. bootstrap ClassLoader
  2402. * Mon Jul 24 2006 Alexandre Oliva <aoliva@redhat.com> 4.1.1-12
  2403. - backport fix by Mark Wielaard for NullPointerException in GCJ web plugin
  2404. * Fri Jul 21 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-11
  2405. - update from gcc-4_1-branch (-r115565:115644)
  2406. - PRs target/27363, c++/27495, c++/28048, c++/28235, c++/28337, c++/28338,
  2407. c++/28363, middle-end/28283
  2408. - turn back autoprov/autoreq on gcc-java, instead disable it on
  2409. libgcj-devel
  2410. * Thu Jul 20 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-10
  2411. - Java backport of from GCC trunk (Tom Tromey, Bryce McKinlay)
  2412. - include libgcjwebplugin.so, gappletviewer, gjarsigner, gkeytool
  2413. - C++ visibility changes (Jason Merrill, PRs c++/28407, c++/28409)
  2414. * Tue Jul 18 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-9
  2415. - update from gcc-4_1-branch (-r115330:115565)
  2416. - PRs c++/28016, c++/28051, c++/28249, c++/28291, c++/28294, c++/28304,
  2417. c++/28343, c/26993, c/28286, fortran/20844, fortran/20893,
  2418. fortran/20903, fortran/25097, fortran/27980, fortran/28201,
  2419. fortran/28353, fortran/28384, libstdc++/27878,
  2420. tree-optimization/19505, tree-optimization/28162,
  2421. tree-optimization/28187
  2422. - fix directory traversal issue in fastjar (Richard Guenther, CVE-2006-3619,
  2423. PR fastjar/28359)
  2424. - fix ICE on complex assignment in nested fn (Richard Henderson,
  2425. PR middle-end/27889)
  2426. - fix __builtin_constant_p in initializers (Mark Shinwell, #198849)
  2427. - fix tree verification - IDENTIFIER_NODE can be shared (Diego Novillo)
  2428. - fix duplicate_eh_regions
  2429. - handle > 99 tree dumps in the testsuite
  2430. * Sat Jul 15 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-8
  2431. - fix handling of C++ template static data members in anonymous namespace
  2432. (PR c++/28370)
  2433. - fix Fortran OpenMP handling of !$omp parallel do with lastprivate on the
  2434. iteration variable (PR fortran/28390)
  2435. - backported reassociation pass rewrite (Daniel Berlin, Jeff Law,
  2436. Roger Sayle, Peter Bergner, PRs ada/24994, tree-optimization/26854)
  2437. - BuildReq sharutils for uuencode
  2438. * Tue Jul 11 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-7
  2439. - update from gcc-4_1-branch (-r115058:115330)
  2440. - PRs c++/13983, c++/17519, c++/18681, c++/18698, c++/26577, c++/27019,
  2441. c++/27424, c++/27768, c++/27820, c++/28114, fortran/23420,
  2442. fortran/23862, fortran/24748, fortran/26801, fortran/27965,
  2443. fortran/28081, fortran/28094, fortran/28167, fortran/28174,
  2444. fortran/28213, fortran/28237, middle-end/27428, target/28084,
  2445. target/28207, tree-optimization/28218
  2446. - use --hash-style=gnu by default
  2447. - C++ visibility fixes (Jason Merrill, PRs c++/17470, c++/19134,
  2448. c++/21581, c++/21675, c++/25915, c++/26612, c++/26905, c++/26984,
  2449. c++/27000, c++/28215, c++/28279)
  2450. - fix ppc insvdi_internal2/3 (David Edelsohn, Alan Modra, #197755,
  2451. PR target/28170)
  2452. - avoid TFmode PRE_INC/PRE_DEC on ppc (David Edelsohn, PR target/28150)
  2453. * Thu Jun 29 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-6
  2454. - update from gcc-4_1-branch (-r114766:115058)
  2455. - PRs c++/27821, c++/28109, c++/28110, c++/28112, fortran/16206,
  2456. fortran/18769, fortran/19310, fortran/19904, fortran/20867,
  2457. fortran/20874, fortran/20876, fortran/22038, fortran/25049,
  2458. fortran/25050, fortran/25056, fortran/25073, fortran/27554,
  2459. fortran/27715, fortran/27784, fortran/27895, fortran/27958,
  2460. fortran/28118, fortran/28119, libfortran/27784, libfortran/27895,
  2461. libgcj/28178, middle-end/28045, middle-end/28151, target/27082,
  2462. target/27861, tree-optimization/27781
  2463. - fix a reload problem that lead sometimes to writes to read-only objects
  2464. (Bernd Schmidt, #196736, PR middle-end/26991, PR rtl-optimization/25636)
  2465. - ppc -mcpu=power6 initial support (Pete Steinmetz, #195924)
  2466. * Tue Jun 20 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-5
  2467. - fix C++ #pragma omp atomic (Mark Mitchell)
  2468. * Mon Jun 19 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-4
  2469. - update from gcc-4_1-branch (-r114555:114766)
  2470. - PRs bootstrap/22541, c++/21210, c++/26559, c++/27227, c++/27648,
  2471. c++/27665, c++/27666, c++/27689, c++/27884, c++/27933, c++/27951,
  2472. fortran/27786, java/28024, middle-end/27733, middle-end/27802,
  2473. target/27858, tree-optimization/27830
  2474. - merge gomp changes from the trunk (-r114642:114643)
  2475. - PR libgomp/28008
  2476. - fix -fmerge-all-constants
  2477. - fix #pragma omp critical handling if not --enable-linux-futex
  2478. * Tue Jun 13 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-3
  2479. - add BuildRequires for elfutils-devel on ia64
  2480. - fix a reload bug visible on s390x (Andreas Krebbel, #193912,
  2481. PR middle-end/27959)
  2482. * Mon Jun 12 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-2
  2483. - update from gcc-4_1-branch (-r114107:114555)
  2484. - PRs ada/27769, c++/20173, c++/26068, c++/26433, c++/26496, c++/27177,
  2485. c++/27385, c++/27447, c++/27451, c++/27601, c++/27713, c++/27716,
  2486. c++/27722, c++/27801, c++/27806, c++/27807, c++/27819, c/25161,
  2487. c/26818, c/27020, c/27718, fortran/14067, fortran/16943,
  2488. fortran/18003, fortran/19015, fortran/19777, fortran/20839,
  2489. fortran/20877, fortran/23091, fortran/23151, fortran/24168,
  2490. fortran/24558, fortran/25047, fortran/25058, fortran/25082,
  2491. fortran/25090, fortran/25098, fortran/25147, fortran/25746,
  2492. fortran/26551, fortran/27155, fortran/27320, fortran/27411,
  2493. fortran/27449, fortran/27470, fortran/27524, fortran/27552,
  2494. fortran/27584, fortran/27613, fortran/27655, fortran/27662,
  2495. fortran/27709, fortran/27897, libgcj/26483, libgfortran/24459,
  2496. libgfortran/27757, middle-end/27743, middle-end/27793,
  2497. target/25758, target/26223, target/27790, target/27842,
  2498. testsuite/27705, tree-optimization/26242, tree-optimization/26622
  2499. - merge gomp changes from the trunk (-r114518:114520 and -r114524:114525)
  2500. - PRs preprocessor/27746, c/27747, c++/27748, fortran/27916
  2501. - don't generate decls with the same DECL_UID in C++ FE (PR middle-end/27793)
  2502. * Thu May 25 2006 Jakub Jelinek <jakub@redhat.com> 4.1.1-1
  2503. - update from gcc-4_1-branch (-r113848:114107)
  2504. - GCC 4.1.1 release
  2505. - PR fortran/27553
  2506. - fix i386/x86_64 -O0 -fpic link failure (#192816, PR target/27758)
  2507. - fix gcjh on 64-bit hosts (#192700)
  2508. - -fvar-tracking fixes needed for SystemTap (Alexandre Oliva, BZ#2438)
  2509. * Wed May 17 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-19
  2510. - update from gcc-4_1-branch (-r113785:113848)
  2511. - PRs c++/26757, c++/27339, c++/27491, driver/26885, rtl-optimization/14261,
  2512. target/26600, tree-optimization/27603
  2513. - merge gomp changes from the trunk (-r113513:113514, -r113821:113823 and
  2514. -r113845:113846)
  2515. - PRs middle-end/27415, middle-end/27573
  2516. - optimize handling of large CONSTRUCTORs (Bernd Schmidt,
  2517. PR middle-end/27620)
  2518. * Mon May 15 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-18
  2519. - update from gcc-4_1-branch (-r113722:113785)
  2520. - PRs c++/27315, c++/27581, c++/27582, rtl-optimization/22563
  2521. - merge gomp changes from the trunk (-r113786:113790)
  2522. * Sun May 14 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-17
  2523. - make -mtune=z9-109 the default on s390{,x} (#184630)
  2524. * Sat May 13 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-16
  2525. - update from gcc-4_1-branch (-r113637:113722)
  2526. - PRs bootstrap/26872, c++/27547, fortran/20460, fortran/24549,
  2527. middle-end/27384, middle-end/27488, target/26545, target/27158
  2528. - fix libgcj.pc location and content on x86_64, ppc64 and s390x (#185230)
  2529. - make __dso_handle const, so that it is added into .data.rel.ro section
  2530. in shared libraries
  2531. - fix a typo in __builtin_object_size computation (Richard Guenther,
  2532. PR tree-optimization/27532)
  2533. - fix ICE on -O0 -g if static local variables are in unreachable code blocks
  2534. (Jan Hubicka, PR debug/26881)
  2535. - fix ICEs with conflicts across abnormal edges (Zdenek Dvorak,
  2536. PRs tree-optimization/27283, tree-optimization/27548,
  2537. tree-optimization/27549)
  2538. - warn about OpenMP section 2.9 region nesting violations
  2539. - fix OpenMP fortran array REDUCTION with -fbounds-check (PR fortran/27446)
  2540. - fix OpenMP {{FIRST,LAST}PRIVATE,REDUCTION} in orphaned construct on
  2541. Fortran dummy argument (PR middle-end/27416)
  2542. - fix ICE on #pragma omp for unsigned iteration variable (PR c/27499)
  2543. * Tue May 9 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-15
  2544. - update from gcc-4_1-branch (-r113623:113637)
  2545. - PR fortran/27378
  2546. - update from trunk (-r109500:109501, -r109670:109671, -r111341:111342,
  2547. -r111704:111705, -r112546:112547, -r113111:113112,
  2548. -r113339:113341, -r113511:113513)
  2549. - fix loop peeling (Zdenek Dvorak, #190039, PR rtl-optimization/27335)
  2550. * Mon May 8 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-14
  2551. - update from gcc-4_1-branch (-r113489:113623)
  2552. - PRs c++/27422, c++/27427, fortran/24813, fortran/25099, fortran/25681,
  2553. fortran/27269, fortran/27324, libfortran/26985, objc/27240,
  2554. target/26481, target/26765, tree-optimization/25985,
  2555. tree-optimization/27151
  2556. - fix zero size field handling in structalias (Richard Guenther,
  2557. PR tree-optimization/27409)
  2558. - fix PR tree-optimization/27136 (Richard Guenther)
  2559. - fix classification of invalid struct types on x86_64 (Volker Reichelt,
  2560. PR target/27421)
  2561. * Wed May 3 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-13
  2562. - update from gcc-4_1-branch (-r113416:113489)
  2563. - PRs c/25309, target/27374, target/27387, tree-optimization/27364
  2564. - merge gomp changes from trunk (-r113267:113271, -r113411:113412,
  2565. -r113452:113456, -r113482:113483, -r113493:113494)
  2566. - PR fortran/27395
  2567. - additional gomp fixes (PRs c++/27359, middle-end/27388)
  2568. - package SYSCALLS.c.X for protoize (#190047)
  2569. - fix gcj -fprofile-arcs -ftest-coverage (Alexandre Oliva, #177450)
  2570. - reenable profiledbootstrap
  2571. - in 64-bit builds remove 32-bit /usr/lib/lib* libraries from the
  2572. buildroots (and similarly on 32-bit builds remove 64-bit /usr/lib64/lib*)
  2573. before AutoReq generation (#190541)
  2574. * Mon May 1 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-12
  2575. - update from gcc-4_1-branch (-r113242:113416)
  2576. - PRs c++/26534, c++/26912, c++/27094, c++/27278, c++/27279, fortran/26017,
  2577. libgfortran/20257, libgfortran/27304, libgfortran/27360,
  2578. libstdc++/26513, middle-end/26565, middle-end/26869,
  2579. rtl-optimization/26685, target/26826
  2580. - merge gomp changes from trunk (-r113255:113256, -r113420:113421)
  2581. - PRs libgomp/25865, c/27358
  2582. - assorted gomp fixes (PRs middle-end/27325, middle-end/27310,
  2583. middle-end/27328, middle-end/27337, c++/26943)
  2584. - fix builtin memset (Alan Modra, PR middle-end/27260, PR middle-end/27095)
  2585. * Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-11
  2586. - update from gcc-4_1-branch (-r113149:113242)
  2587. - PRs c/25875, c/26774, fortran/18803, fortran/25597, fortran/25669,
  2588. fortran/26787, fortran/26822, fortran/26834, fortran/27089,
  2589. fortran/27113, fortran/27122, fortran/27124, target/21283,
  2590. target/26961
  2591. - fix number of iterations computation (Zdenek Dvorak, #189376,
  2592. PR tree-optimization/27285)
  2593. - fix handling of volatile in the inliner (Andrew Pinski, Richard Guenther,
  2594. PR tree-optimization/27236)
  2595. - strip useless type conversions in the inliner (Andrew Pinski,
  2596. Richard Guenther, PR tree-optimization/27218)
  2597. * Fri Apr 21 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-10
  2598. - update from gcc-4_1-branch (-r113110:113149)
  2599. - PRs libgcj/21941, libgcj/27170, libgcj/27231, libgfortran/27138,
  2600. libstdc++/26424, mudflap/26789
  2601. - improve dir/../-stripping code to support /usr/lib64 and /usr/lib in
  2602. separate AFS mountpoints (Alexandre Oliva, #137200)
  2603. - fix fortran real(16) transpose and reshape on 32-bit architectures
  2604. (PR fortran/26769)
  2605. - fix i?86/x86_64 vector extraction (Alexandre Oliva, #187450)
  2606. - fix testcase for ppc32 va_arg bug
  2607. - fix testsuite log uuencoding
  2608. - fix acats timeout framework
  2609. * Thu Apr 20 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-9
  2610. - update from gcc-4_1-branch (-r112951:113110)
  2611. - PRs c++/10385, c++/26036, c++/26365, c++/26558, classpath/27163,
  2612. fortran/26769, libgcj/27171, libgfortran/26766, libstdc++/27162,
  2613. middle-end/27095, middle-end/27134, target/27182,
  2614. tree-optimization/26643, tree-optimization/26821,
  2615. tree-optimization/26854, tree-optimization/27087
  2616. - fix ppc32 va_arg bug (Alan Modra)
  2617. - assorted gomp fixes (PRs c++/25874, middle-end/25989, c/25996, c/26171,
  2618. middle-end/26913)
  2619. - fix pretty printing C array types (#188944)
  2620. - fix ICE on unprototyped alloca (PR tree-optimization/26865)
  2621. - fix truncation optimization overflow handling (PR middle-end/26729)
  2622. - uuencode dejagnu testsuite log files in rpmbuild output
  2623. * Fri Apr 14 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-8
  2624. - update from gcc-4_1-branch (-r112825:112951)
  2625. - PRs c++/26122, c++/26295, fortran/23634, fortran/25619, fortran/26257,
  2626. libgcj/23829, libgcj/26522, libgfortran/26890, target/27006
  2627. - merge gomp changes from trunk (-r112934:112935)
  2628. - PR libgomp/26651
  2629. - fix ICE in gomp handling of EH regions (PR middle-end/26823)
  2630. * Mon Apr 10 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-7
  2631. - update from gcc-4_1-branch (-r112727:112825)
  2632. - PRs fortran/19101, fortran/25031, fortran/26779, fortran/26891,
  2633. fortran/26976, target/26508, tree-optimization/26919
  2634. - fix libgfortran printing of REAL*16 for IEEE quad and IBM extended formats
  2635. (PR libgfortran/24685)
  2636. - fix Fortran -fbounds-check (Roger Sayle, #188409, PR middle-end/22375)
  2637. - fix Java StackTraceElement.toString() (Mark Wielaard, #183212,
  2638. PR classpath/27081)
  2639. - fix -fopenmp -static
  2640. * Thu Apr 6 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-6
  2641. - update from gcc-4_1-branch (-r112706:112727)
  2642. - PRs classpath/24752, classpath/27028, libgcj/26625, libgcj/27024,
  2643. tree-optimization/26996
  2644. - reenable PR c++/19238, c++/21764 fixes, only PR c++/21581 is not
  2645. applied
  2646. - better fix for Java GC vs. pthread_create (Bryce McKinlay, #182263,
  2647. PR libgcj/13212)
  2648. - fix objc_push_parm (#185398)
  2649. - fix ICE with -feliminate-dwarf2-dups and using namespace (#187787,
  2650. PR debug/27057)
  2651. * Wed Apr 5 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-5
  2652. - update from gcc-4_1-branch (-r112431:112706)
  2653. - PRs bootstrap/26936, bootstrap/27023, classpath/25924, fortran/19303,
  2654. fortran/25358, fortran/26816, java/25414, java/26042, java/26858,
  2655. libfortran/26735, libgcj/26990, libstdc++/26777, testsuite/25741,
  2656. tree-optimization/18527, tree-optimization/26763,
  2657. tree-optimization/26830
  2658. - merge gomp changes from trunk (-r112602:112603 and -r112618:112619)
  2659. - temporarily revert PR c++/21764, c++/19238, c++/21581 fixes (#187399)
  2660. * Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-4
  2661. - update from gcc-4_1-branch (-r111697:112431)
  2662. - PRs ada/25885, c/26004, fortran/17298, fortran/20935, fortran/20938,
  2663. fortran/23092, fortran/24519, fortran/24557, fortran/25045,
  2664. fortran/25054, fortran/25075, fortran/25089, fortran/25378,
  2665. fortran/25395, fortran/26041, fortran/26054, fortran/26064,
  2666. fortran/26107, fortran/26277, fortran/26393, fortran/26716,
  2667. fortran/26741, libfortran/21303, libfortran/24903, libgcj/24461,
  2668. libgcj/25713, libgcj/26103, libgcj/26688, libgcj/26706,
  2669. libgfortran/26499, libgfortran/26509, libgfortran/26554,
  2670. libgfortran/26661, libgfortran/26880, libstdc++/26132,
  2671. middle-end/18859, middle-end/19543, middle-end/26557,
  2672. middle-end/26630, other/26489, target/25917, target/26347,
  2673. target/26459, target/26532, target/26607, tree-optimization/26524,
  2674. tree-optimization/26587, tree-optimization/26672
  2675. - fix visibility and builtins interaction (Jason Merrill,
  2676. PR middle-end/20297, #175442)
  2677. - merge gomp changes from trunk (-r112022:112023, -r112250:112251,
  2678. -r112252:112253, -r112350:112351 and -r112282:112283)
  2679. - PRs c++/26691, middle-end/26084, middle-end/26611, c++/26690,
  2680. middle-end/25989
  2681. - support visibility attribute on namespaces (Jason Merrill, PR c++/21764,
  2682. PR c++/19238)
  2683. - use hidden visibility for anonymous namespaces by default (Jason Merrill,
  2684. PR c++/21581)
  2685. * Thu Mar 9 2006 Alexandre Oliva <aoliva@redhat.com> 4.1.0-3
  2686. - make ppc32 TLS PIC code sequences compatible with secure plt (#184446)
  2687. (Richard Henderson and myself)
  2688. * Sat Mar 4 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-2
  2689. - update from gcc-4_1-branch (-r111570:111697)
  2690. - PRs c++/26291, libgfortran/26136, libgfortran/26423, libgfortran/26464,
  2691. libstdc++/26526, rtl-optimization/26345, target/19061, target/26453
  2692. - handle DW_CFA_val_{offset,offset_sf,expression} in the libgcc{,_s} unwinder
  2693. * Tue Feb 28 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-1
  2694. - update from gcc-4_1-branch (-r111466:111570)
  2695. - GCC 4.1.0 release
  2696. - PR other/26473
  2697. * Mon Feb 27 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.31
  2698. - add __floatuns[sdt]i[sdxt]f exports to libgcc_s.so.1 (Joseph S. Myers)
  2699. - fix unwinding through signal frames (#175951, PR other/26208, glibc BZ#300)
  2700. * Mon Feb 27 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.30
  2701. - update from gcc-4_1-branch (-r111278:111466)
  2702. - GCC 4.1.0 RC2
  2703. - PRs fortran/26201, libobjc/26309, rtl-optimization/25603, target/25603
  2704. - fix nested vector shifts (#182047, PR middle-end/26379)
  2705. - merge gomp changes from trunk (-r111390:111391, -r111428:111429 and
  2706. -r111440:111441)
  2707. - PR middle-end/26412
  2708. - fortran MATMUL optimization (Richard Sandiford)
  2709. - fortran WHERE optimizations (Roger Sayle)
  2710. - x86_64 _mm_monitor fixes (H.J. Lu, PR target/24879)
  2711. - add MNI support on i?86/x86_64, -mmni option and <tmmintrin.h> header
  2712. (H.J Lu)
  2713. * Sun Feb 19 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.29
  2714. - update from gcc-4_1-branch (-r111179:111278)
  2715. - PRs ada/13408, c++/26266, target/22209, target/26189
  2716. - fix ppc32 -fpic reload problem with extenddftf2 pattern
  2717. (David Edelsohn, #181625, PR target/26350)
  2718. - fix the PR middle-end/26334 patch
  2719. * Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.28
  2720. - update from gcc-4_1-branch (-r110978:111179)
  2721. - PRs ada/20753, bootstrap/16787, bootstrap/26053, fortran/25806,
  2722. libfortran/15234, libgfortran/25949, middle-end/25335,
  2723. target/25259, target/26255
  2724. - fix ICE with shift by -1 (#181586, PR middle-end/26300)
  2725. - merge gomp changes from trunk (-r110983:110984, -r111017:111018,
  2726. -r111152:111153 and -r111204:111205)
  2727. - PRs bootstrap/26161, fortran/26224, libgomp/25938, libgomp/25984
  2728. - don't define _REENTRANT in gthr*.h (#176278, PR libstdc++/11953)
  2729. - define _REENTRANT if -pthread and _POSIX_SOURCE if -posix on s390{,x}
  2730. and ia64
  2731. - fix ICE with register variable and __asm statement (#181731,
  2732. PR middle-end/26334)
  2733. * Tue Feb 14 2006 Alexandre Oliva <aoliva@redhat.com> 4.1.0-0.27
  2734. - merge fix by Zdenek Dvorak for regression introduced by patch for PR
  2735. tree-optimization/26209
  2736. * Tue Feb 14 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.26
  2737. - update from gcc-4_1-branch (-r110903:110978)
  2738. - PRs fortran/20861, fortran/20871, fortran/25059, fortran/25070,
  2739. fortran/25083, fortran/25088, fortran/25103, fortran/26038,
  2740. fortran/26074, inline-asm/16194, libfortran/24685,
  2741. libfortran/25425, target/26141, tree-optimization/26258
  2742. - ABI change - revert to GCC 3.3 and earlier behaviour of
  2743. zero sized bitfields in packed structs (Michael Matz, PR middle-end/22275)
  2744. - fix valarrays vs. non-POD (Paolo Carlini, Gabriel Dos Reis,
  2745. PR libstdc++/25626)
  2746. - fix C++ duplicate declspec diagnostics (Volker Reichelt, PR c++/26151)
  2747. - fix dominance ICE (Zdenek Dvorak, PR tree-optimization/26209)
  2748. - add some new Intel {,e,x}mmintrin.h intrinsics (H.J. Lu)
  2749. - speedup bitset<>::_M_copy_to_string (Paolo Carlini)
  2750. - fix tree_expr_nonzero_p (Jeff Law)
  2751. - fix TRUTH_XOR_EXPR handling in VRP (Jeff Law)
  2752. * Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.25
  2753. - update from gcc-4_1-branch (-r110831:110903)
  2754. - PRs c++/16405, c++/24996, fortran/14771, fortran/20858, fortran/25756,
  2755. middle-end/22439
  2756. - merge gomp changes from trunk (-r110719:110720, -r110852:110853 and
  2757. -r110907:110908)
  2758. - PR libgomp/25936
  2759. - fix gimplification of const fn pointers to builting functions
  2760. (PR middle-end/26092)
  2761. - make sure Fortran length artifical variables aren't SAVEd (Andrew Pinski,
  2762. PR fortran/26246)
  2763. * Fri Feb 10 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.24
  2764. - update from gcc-4_1-branch (-r110632:110831)
  2765. - PRs tree-opt/26180, c++/26070, c++/26071, fortran/25577, java/26192,
  2766. libfortran/23815, libstdc++/26127, target/23359, target/26109,
  2767. tree-opt/25251
  2768. - remove gcc-ppc32, gcc-c++-ppc32, gcc-sparc32 and gcc-c++-sparc32
  2769. subpackages, they do more harm than good. Particularly this time
  2770. gcc*ppc32 and gcc*sparc32 defaulted to DFmode long double rather
  2771. than TFmode long double
  2772. * Mon Feb 6 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.23
  2773. - update from gcc-4_1-branch (-r110582:110632)
  2774. - PRs classpath/24618, classpath/25141, classpath/25727, fortran/25046,
  2775. fortran/26039
  2776. - use LOGICAL*1 instead of LOGICAL*4 for Fortran where temporary masks
  2777. (Roger Sayle)
  2778. - fix symbol versions in s390 libgcc_s.so.1
  2779. - sparc32 and alpha long double fixes
  2780. - BuildRequires libXt-devel
  2781. - BuildRequires and Requires glibc-devel >= 2.3.90-35 on arches
  2782. that are switching long double
  2783. * Sat Feb 4 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.22
  2784. - fix ia64 debug info patch
  2785. - fix libjava pthread_create wrapper patch
  2786. * Sat Feb 4 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.21
  2787. - update from gcc-4_1-branch (-r110433:110582)
  2788. - PRs c++/25342, c++/25979, fortran/20845, fortran/24266,
  2789. fortran/24958, fortran/25072, libstdc++/21554, middle-end/24901,
  2790. middle-end/25977, middle-end/26001, target/25864, target/25926,
  2791. target/25960
  2792. - put ia64 read-only sections that require runtime relocations
  2793. even in -fno-pic code into .data.rel.ro etc. sections
  2794. rather than .rodata to avoid DT_TEXTREL binaries
  2795. (Richard Henderson, PR target/26090)
  2796. - merge gomp changes from trunk (-r110511:110512 and -r110549:110552)
  2797. - fix ia64 debug info coverage of epilogues (Alexandre Oliva, PR debug/24444)
  2798. - export pthread_create from libgcj.so.7 as a wrapper around
  2799. libpthread.so.0's pthread_create that handles GC (Anthony Green, Tom Tromey)
  2800. - BC-ABI java lookup fix (Andrew Haley, #179070, #178156)
  2801. - on sparc64 emit .register %g7,#ignore instead of .register %g7,#scratch
  2802. to avoid problems with TLS or -fstack-protector
  2803. - switch to IBM extended format long double by default on ppc and ppc64
  2804. - switch to IEEE 754 quad format long double by default on s390, s390x,
  2805. sparc32 and alpha
  2806. * Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.20
  2807. - merge from gomp-20050808-branch (up to -r110392)
  2808. - fix PR c++/25874 (Diego Novillo)
  2809. * Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.19
  2810. - s390{,x} long double patch fix for s390x ICEs on test-ldouble
  2811. and tst-align2 (Andreas Krebbel)
  2812. * Tue Jan 31 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.18
  2813. - update from gcc-4_1-branch (-r110317:110433)
  2814. - PRs c++/25855, c++/25999, fortran/17911, fortran/18578, fortran/18579,
  2815. fortran/20857, fortran/20885, fortran/20895, fortran/25030,
  2816. fortran/25835, fortran/25951, java/21428, libgfortran/25835,
  2817. target/14798, target/25706, target/25718, target/25947,
  2818. target/26018, testsuite/25318
  2819. - add -mtune=generic support for i?86 and x86_64 (Jan Hubicka, H.J. Lu,
  2820. Evandro Menezes)
  2821. - use -mtune=generic by default if neither -march= nor -mtune= is specified
  2822. on command line on i?86 or x86_64
  2823. - updated s390{,x} long double patch, fixing ICEs on s390x glibc build
  2824. (Andreas Krebbel, Ulrich Weigand)
  2825. * Sat Jan 28 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.17
  2826. - update from gcc-4_1-branch (-r110062:110317)
  2827. - PRs ada/20548, ada/21317, bootstrap/25859, c++/25552, c++/25856,
  2828. c++/25858, c++/25895, c/25892, fortran/18540, fortran/20852,
  2829. fortran/20881, fortran/23308, fortran/24276, fortran/25084,
  2830. fortran/25085, fortran/25086, fortran/25124, fortran/25416,
  2831. fortran/25538, fortran/25625, fortran/25710, fortran/25716,
  2832. fortran/25901, fortran/25964, java/25816, other/24829,
  2833. rtl-optimization/24626, rtl-optimization/25654, target/24831,
  2834. testsuite/24962, testsuite/25590
  2835. - atomic builtin fixes (Richard Henderson)
  2836. - -mlong-double-128 support on ppc32 (David Edelsohn, Alan Modra)
  2837. - -mlong-double-128 support on s390 and s390x (Andreas Krebbel,
  2838. Ulrich Weigand)
  2839. * Sat Jan 21 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.16
  2840. - update from gcc-4_1-branch (-r109815:110062)
  2841. - PRs ada/24533, c++/16829, c++/22136, c++/25836, c++/25854, c/25805,
  2842. classpath/20198, fortran/20869, fortran/20875, fortran/25024,
  2843. fortran/25631, fortran/25697, fortran/25785, libgcj/25840,
  2844. libgfortran/25631, libgfortran/25697, libstdc++/25823,
  2845. libstdc++/25824, target/25731, testsuite/25171
  2846. - fix X509Certificate.java (#174708, #177733)
  2847. * Tue Jan 17 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.15
  2848. - update from gcc-4_1-branch (-r109401:109815)
  2849. - PRs c++/24824, c++/25386, c++/25663, c/25682, classpath/25803,
  2850. fortran/12456, fortran/20868, fortran/20870, fortran/21256,
  2851. fortran/21977, fortran/22146, fortran/24640, fortran/25029,
  2852. fortran/25093, fortran/25101, fortran/25486, fortran/25598,
  2853. fortran/25730, libgcj/21637, libgcj/23499, libgfortran/25598,
  2854. libstdc++/23591, libstdc++/25472, rtl-optimization/24257,
  2855. rtl-optimization/25367, rtl-optimization/25662, target/20754,
  2856. target/25042, target/25168, testsuite/25728, testsuite/25777,
  2857. tree-opt/24365, tree-optimization/23109, tree-optimization/23948,
  2858. tree-optimization/24123, tree-optimization/25125
  2859. - update from gomp-20050608-branch (up to -r109816)
  2860. - fix ppc32 libffi (#177655)
  2861. - fix lookup_conversions_r (#177918)
  2862. - define __STDC__ as a normal macro rather than a preprocessor builtin
  2863. unless it needs to change its value between system and non-system
  2864. headers (PR preprocessor/25717)
  2865. * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.14
  2866. - update from gcc-4_1-branch (-r109369:109401)
  2867. - PR fortran/23675
  2868. - fix Java shutdown hook (Tom Tromey, #165136)
  2869. - fix libjava/shlibpath.m4 (PR libgcj/24940)
  2870. * Thu Jan 5 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.13
  2871. - update from gcc-4_1-branch (-r108957:109369)
  2872. - PRs c++/23171, c++/23172, c++/24671, c++/24782, c++/25294, c++/25417,
  2873. c++/25439, c++/25492, c++/25625, c++/25632, c++/25633, c++/25634,
  2874. c++/25635, c++/25637, c++/25638, c/25183, c/25559, debug/25562,
  2875. fortran/18990, fortran/19362, fortran/20244, fortran/20862,
  2876. fortran/20864, fortran/20889, fortran/22607, fortran/23152,
  2877. fortran/25018, fortran/25053, fortran/25055, fortran/25063,
  2878. fortran/25064, fortran/25066, fortran/25067, fortran/25068,
  2879. fortran/25069, fortran/25106, fortran/25391, fortran/25532,
  2880. fortran/25586, fortran/25587, libgcj/9715, libgcj/19132,
  2881. libgfortran/25139, libgfortran/25419, libgfortran/25510,
  2882. libgfortran/25550, libgfortran/25594, middle-end/24827, objc/25328,
  2883. rtl-optimization/21041, rtl-optimization/25130, target/24342,
  2884. target/25554, target/25572, testsuite/25214, testsuite/25441,
  2885. testsuite/25442, testsuite/25444, tree-opt/25513
  2886. - create java Package for compiled classes which are linked in but
  2887. loaded by the system class loader (Tom Tromey, #176956)
  2888. - fix posix_memalign prototype in <mm_malloc.h> (#176461)
  2889. - update from gomp-20050608-branch (up to -r109349)
  2890. - buildrequire libXtst-devel (#176898)
  2891. - fix built in path to classmap.db on x86_64, s390x and ppc64 (#176562)
  2892. - fix debug info for preprocessed Fortran code (#175071, PR fortran/25324)
  2893. * Fri Dec 22 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.12
  2894. - make sure GCJFLAGS are propagated down to libjava's configure
  2895. - build crt{begin,end}*.o with -fno-asynchronous-unwind-tables
  2896. if RPM_OPT_FLAGS include -fasynchronous-unwind-tables
  2897. - fix PR c++/25369 (Mark Mitchell)
  2898. - fix PR libgfortran/25307 (Jerry DeLisle)
  2899. * Thu Dec 22 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.11
  2900. - update from gcc-4_1-branch (-r108861:108957)
  2901. - PRs debug/25518, fortran/24268, fortran/25423, libgfortran/25463,
  2902. rtl-optimization/25196, tree-optimization/24793
  2903. - validate changes in forward copy propagation (PR target/25005)
  2904. - fix Java constants constructors on 64-bit big endian arches
  2905. (Andrew Haley, PR java/25535)
  2906. - fix PR c++/25364 (Mark Mitchell)
  2907. * Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.10
  2908. - update from gcc-4_1-branch (-r108539:108861)
  2909. - PRs ada/18659, ada/18819, c++/20552, c++/21228, c++/24278, c++/24915,
  2910. fortran/18197, fortran/25458, libgfortran/25039, libgfortran/25264,
  2911. libgfortran/25349, libobjc/14382, libstdc++/25421, middle-end/22313,
  2912. middle-end/24306, rtl-optimization/23837, rtl-optimization/25224,
  2913. rtl-optimization/25310, target/24969, testsuite/25215,
  2914. tree-optimization/23838, tree-optimization/24378
  2915. - update from gomp-20050608-branch (up to -r108859)
  2916. - fix _Pragma handling (Richard Henderson, PR preprocessor/25240)
  2917. - fix reload re-recognition of insns (Alan Modra, PR rtl-optimization/25432)
  2918. - don't peephole RTX_FRAME_RELATED_P insns (Andrew Haley,
  2919. PR middle-end/25121)
  2920. * Thu Dec 15 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.9
  2921. - fix OpenMP lastprivate handling for global vars (Aldy Hernandez)
  2922. - fix gnu.xml.dom.DomNode's detach method (Caolan McNamara,
  2923. PR classpath/25426)
  2924. - fix up the #175569 fix (Tom Tromey, #175833, PR java/25429)
  2925. - fix strength reduction miscompilation of libgnomecanvas
  2926. (#175669, PR rtl-optimization/24899)
  2927. - create libgcj-*.jar with -@E options and feed a sorted list to
  2928. it rather than relying on filesystem sorting
  2929. * Wed Dec 14 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.8
  2930. - update from gcc-4_1-branch (-r108414:108539)
  2931. - PRs classpath/25389, fortran/23815, fortran/25078, target/25254
  2932. - fix Java ICE on initialized static final var used in case
  2933. (Andrew Haley, #175569, PR java/25429)
  2934. - fix crash in _Unwind_IteratePhdrCallback (Andrew Haley)
  2935. - don't Require alsa-lib-devel, just BuildRequire it
  2936. (#175627)
  2937. - use .gnu.linkonce.d.rel.ro.* sections for objects that
  2938. are constant after relocation processing
  2939. * Mon Dec 12 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.7
  2940. - update from gcc-4_1-branch (-r108157:108414)
  2941. - PRs c++/19317, c++/19397, c++/19762, c++/19764, c++/25010, c++/25300,
  2942. c++/25337, debug/24908, fortran/25292, libfortran/25116,
  2943. libgcj/25265, target/17828, target/19005, target/23424,
  2944. target/25212, target/25258, target/25311, testsuite/20772,
  2945. testsuite/24478, testsuite/25167, tree-optimization/25248
  2946. - update from gomp-20050608-branch (up to -r108424)
  2947. - add BuildReq for alsa-lib-devel and configure with --disable-dssi
  2948. - sort files in libgcj-*.jar and touch them to latest ChangeLog
  2949. timestamp, so that libgcj-*.jar is identical across multilib arches
  2950. - don't use pushw instruction on i?86, as that leads to ICEs
  2951. in def_cfa_1, because negative CFA offsets not multiple of 4
  2952. aren't representable in the unwind and debug info (PR debug/25023,
  2953. PR target/25293)
  2954. - fix ICEs with x86_64 -mlarge-data-threshold=N and STRING_CSTs
  2955. (Jan Hubicka, PR target/24188)
  2956. - fix Java ICE with input_filename being unset (Alexandre Oliva, #174912)
  2957. - don't accept invalid int x,; in C++ (Petr Machata, PR c++/24907)
  2958. - fix Java ICE in do_resolve_class (Andrew Haley, PR java/25366,
  2959. PR java/25368)
  2960. - make sure g*.dg/compat/struct-layout-1.exp generated tests
  2961. don't use arrays with entries aligned more than their size (PR c++/25331)
  2962. - don't use -liberty in g++.dg/compat/struct-layout-1.exp tests
  2963. * Wed Dec 7 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.6
  2964. - allow #pragmas at C struct scope as well as ObjC class scope
  2965. (PR c/25246)
  2966. - some gomp testcase fixes
  2967. * Wed Dec 7 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.5
  2968. - update from gcc-4_1-branch (-r107810:108157)
  2969. - PRs bootstrap/25207, c++/24103, c++/24138, c++/24173, fortran/15809,
  2970. fortran/21302, fortran/23912, java/25283, libfortran/24919,
  2971. libgfortran/25149, middle-end/25176, other/13873, target/18580,
  2972. target/24108, target/24475, target/24934, target/25199,
  2973. testsuite/25247, tree-optimization/24963
  2974. - update from gomp-20050608-branch (up to -r108105)
  2975. - -Wstrict-aliasing C++ support (Richard Guenther, Dirk Mueller,
  2976. Paolo Carlini, PRs c++/14024, libstdc++/24975)
  2977. - fix mark_used_regs regression (Andreas Krebbel, PR rtl-optimization/24823)
  2978. - fix reload ICE (Kaz Kojima, PR target/24982)
  2979. - fix PPC ICE on Linux kernel (Paolo Bonzini, PR target/24982)
  2980. - fix s390{,x} shifts with shift count ANDed with constant mask
  2981. (Andreas Krebbel, PR target/25268)
  2982. - s390{,x} atomic builtins enhancements (Adrian Straetling)
  2983. * Thu Dec 1 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.4
  2984. - update from gcc-4_1-branch (-r107618:107810)
  2985. - PRs c++/21123, c++/21166, fortran/24223, fortran/24705, java/18278,
  2986. libgfortran/25109, middle-end/20109, middle-end/25120,
  2987. middle-end/25158, rtl-opt/24930
  2988. - use %%{_tmppath} in BuildRoot (#174594)
  2989. - require libgomp in gcc subpackage
  2990. - fix Java .so symlinks
  2991. * Tue Nov 29 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.3
  2992. - fix IA-64 local-exec TLS handling
  2993. - fix IA-64 __sync_fetch_and_{sub,xor,...}
  2994. * Mon Nov 28 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.2
  2995. - update from gcc-4_1-branch (-r107462:107618)
  2996. - PRs fortran/24917, libgcj/25016, libgfortran/24945, middle-end/21309,
  2997. middle-end/25022, libfortran/24991
  2998. - update from gomp-20050608-branch (up to -r107619)
  2999. - fix omp_get_wti{me,ck} on older kernels
  3000. - ppc32 EH fix
  3001. - fix #pragma omp atomic
  3002. - resurrected multi32 hack for ppc32 and sparc32
  3003. * Thu Nov 24 2005 Jakub Jelinek <jakub@redhat.com> 4.1.0-0.1
  3004. - initial 4.1 package, using newly created redhat/gcc-4_1-branch