Changeset ae67478 in rtems
- Timestamp:
- 08/24/03 04:41:10 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4d4cc6e1
- Parents:
- 9789eefc
- Location:
- scripts
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/ChangeLog
r9789eefc rae67478 1 2003-08-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * common/common.add.in: s/www.oarcorp.com/www.rtems.com/. 4 Add %define __os_install_post %{nil} to prevent RH-9's rpm-brp-strip 5 from running (Chokes on foreign object formats). 6 * gcc3newlib/base-g77.add: 7 Use %{gcc_version} instead of @gcc_version@. 8 * gcc3newlib/gccnewlib.add: 9 Use %{gcc_version} instead of @gcc_version@. 10 Reflect gcc >= 3.3 shipping monolytic infos. 11 * gcc3newlib/target-c++.add: 12 Use %{gcc_version} instead of @gcc_version@. 13 Don't pickup c++filt. 14 * gcc3newlib/target-g77.add: 15 Use %{gcc_version} instead of @gcc_version@. 16 * gcc3newlib/target-gcc.add: 17 Use %{gcc_version} instead of @gcc_version@. 18 * gcc3newlib/target-gcj.add: 19 Use %{gcc_version} instead of @gcc_version@. 20 * gcc3newlib/target-gnat.add: 21 Use %{gcc_version} instead of @gcc_version@. 22 * gcc3newlib/target-objc.add: 23 Use %{gcc_version} instead of @gcc_version@. 24 1 25 2003-08-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 26 -
scripts/common/common.add.in
r9789eefc rae67478 1 1 # 2 2 # Please send bugfixes or comments to 3 # http://www. oarcorp.com/cgi-bin/gnatweb.pl3 # http://www.rtems.com/cgi-bin/gnatweb.pl 4 4 # or mailto:@PACKAGE_BUGREPORT@ 5 5 # … … 13 13 %endif 14 14 15 # Without this, RPM-4.x' rpm-brp-strip screws up on cross-binaries 16 %define __os_install_post %{nil} 17 15 18 Vendor: OARCorp 16 19 Distribution: Linux -
scripts/gcc3newlib/base-g77.add
r9789eefc rae67478 21 21 %dir %{_prefix}/man 22 22 %dir %{_prefix}/man/man1 23 %doc %{_prefix}/man/man1/ @target_alias@-g77.1*23 %doc %{_prefix}/man/man1/%{gcc_target}-g77.1* 24 24 25 25 %post -n rtems-base-g77 -
scripts/gcc3newlib/gccnewlib.add
r9789eefc rae67478 3 3 %define newlib_version @newlib_version@ 4 4 5 Name: @target_alias@-gcc-newlib 6 Summary: gcc and newlib C Library for @target_alias@. 5 %define gcc_target @target_alias@ 6 7 Name: %{gcc_target}-gcc-newlib 8 Summary: gcc and newlib C Library for %{gcc_target}. 7 9 Group: rtems 8 10 Release: @Release@ … … 14 16 Version: gcc%{gcc_version}newlib%{newlib_version} 15 17 # gcc 3.x and gcc 2.9 16 # Source0: ftp://ftp.gnu.org/pub/gnu/gcc/gcc- @gcc_version@.tar.gz17 Source0: ftp://ftp.gnu.org/pub/gnu/gcc/gcc- @gcc_version@.tar.bz218 # Source0: ftp://ftp.gnu.org/pub/gnu/gcc/gcc-%{gcc_version}.tar.gz 19 Source0: ftp://ftp.gnu.org/pub/gnu/gcc/gcc-%{gcc_version}.tar.bz2 18 20 # gcc 2.95.x 19 21 # Source0: ftp://ftp.gnu.org/pub/gnu/gcc/gcc-%{gcc_version}.tar.bz2 … … 22 24 @PATCH3@ 23 25 BuildPreReq: texinfo >= 4.2 24 BuildPreReq: @target_alias@-binutils26 BuildPreReq: %{gcc_target}-binutils 25 27 # 26 28 # The original sources are not included in the source RPM. … … 66 68 %define build_gnat 0 67 69 68 %if " @target_alias@" == "arm-rtems"69 %define build_gcj %_gcj 70 %endif 71 72 %if " @target_alias@" == "c4x-rtems"70 %if "%{gcc_target}" == "arm-rtems" 71 %define build_gcj %_gcj 72 %endif 73 74 %if "%{gcc_target}" == "c4x-rtems" 73 75 %define build_cxx 0 74 76 %endif 75 77 76 %if " @target_alias@" == "i386-rtems"78 %if "%{gcc_target}" == "i386-rtems" 77 79 %define build_gnat %_gnat 78 80 %define build_gcj %_gcj 79 81 %endif 80 82 81 %if " @target_alias@" == "i960-rtems"83 %if "%{gcc_target}" == "i960-rtems" 82 84 %define build_cxx 0 83 85 %endif 84 86 85 %if " @target_alias@" == "m68k-rtems"86 %define build_gcj %_gcj 87 %endif 88 89 %if " @target_alias@" == "mips-rtems"87 %if "%{gcc_target}" == "m68k-rtems" 88 %define build_gcj %_gcj 89 %endif 90 91 %if "%{gcc_target}" == "mips-rtems" 90 92 %define build_gnat %_gnat 91 93 %define build_gcj %_gcj 92 94 %endif 93 95 94 %if " @target_alias@" == "powerpc-rtems"96 %if "%{gcc_target}" == "powerpc-rtems" 95 97 %define build_gnat %_gnat 96 98 %define build_gcj %_gcj 97 99 %endif 98 100 99 %if " @target_alias@" == "sparc-rtems"101 %if "%{gcc_target}" == "sparc-rtems" 100 102 %define build_gnat %_gnat 101 103 %define build_gcj %_gcj … … 134 136 135 137 %prep 136 # untar the sources inside @target_alias@-gcc-newlib138 # untar the sources inside %{gcc_target}-gcc-newlib 137 139 %setup -c -T -n %{name} -a0 -a1 138 140 … … 178 180 ../gcc-%{gcc_version}/configure \ 179 181 --build=%_build --host=%_host \ 180 --target= @target_alias@\182 --target=%{gcc_target} \ 181 183 --with-gnu-as --with-gnu-ld --with-newlib --verbose \ 182 184 --with-system-zlib --disable-nls \ … … 213 215 GNATLIBCFLAGS="-g -O2" 214 216 # Let gnatlib building find newlib's headers 215 GNATLIBCFLAGS="$GNATLIBCFLAGS -isystem `pwd`/ @target_alias@/newlib/targ-include"217 GNATLIBCFLAGS="$GNATLIBCFLAGS -isystem `pwd`/%{gcc_target}/newlib/targ-include" 216 218 GNATLIBCFLAGS="$GNATLIBCFLAGS -isystem `pwd`/../newlib-%{newlib_version}/newlib/libc/include" 217 219 # Without this xgcc doesn't find the target's binutils. 218 GNATLIBCFLAGS="$GNATLIBCFLAGS -B%{_prefix}/ @target_alias@/bin/"219 %if " @target_alias@" == "mips-rtems"220 GNATLIBCFLAGS="$GNATLIBCFLAGS -B%{_prefix}/%{gcc_target}/bin/" 221 %if "%{gcc_target}" == "mips-rtems" 220 222 GNATLIBCFLAGS="$GNATLIBCFLAGS -G0" 221 223 %endif … … 227 229 cd build 228 230 # Bug in gcc-2.95.1: It doesn't build this installation directory 229 # If it doesn't find it, gcc doesn't install @target_alias@/bin/gcc231 # If it doesn't find it, gcc doesn't install %{gcc_target}/bin/gcc 230 232 %if "%{gcc_version}" < "3.0" 231 233 ../gcc-%{gcc_version}/mkinstalldirs \ 232 $RPM_BUILD_ROOT%{_prefix}/ @target_alias@/bin234 $RPM_BUILD_ROOT%{_prefix}/%{gcc_target}/bin 233 235 %endif 234 236 235 237 make prefix=$RPM_BUILD_ROOT%{_prefix} \ 236 238 bindir=$RPM_BUILD_ROOT%{_bindir} install 237 cd @target_alias@/newlib239 cd %{gcc_target}/newlib 238 240 make prefix=$RPM_BUILD_ROOT%{_prefix} \ 239 241 bindir=$RPM_BUILD_ROOT%{_bindir} install-info … … 244 246 # Install a copy of gcc as gnatgcc 245 247 # Enables us to mix different versions of gnat and gnatgcc 246 rm -f $RPM_BUILD_ROOT%{_bindir}/ @target_alias@-gnatgcc%{_exeext}247 ln $RPM_BUILD_ROOT%{_bindir}/ @target_alias@-gcc%{_exeext} \248 $RPM_BUILD_ROOT%{_bindir}/ @target_alias@-gnatgcc%{_exeext}248 rm -f $RPM_BUILD_ROOT%{_bindir}/%{gcc_target}-gnatgcc%{_exeext} 249 ln $RPM_BUILD_ROOT%{_bindir}/%{gcc_target}-gcc%{_exeext} \ 250 $RPM_BUILD_ROOT%{_bindir}/%{gcc_target}-gnatgcc%{_exeext} 249 251 %endif 250 252 … … 260 262 then 261 263 mv $RPM_BUILD_ROOT%{_prefix}/bin/cpp%{_exeext} \ 262 $RPM_BUILD_ROOT%{_prefix}/bin/ @target_alias@-cpp%{_exeext}264 $RPM_BUILD_ROOT%{_prefix}/bin/%{gcc_target}-cpp%{_exeext} 263 265 fi 264 266 %endif … … 266 268 # gzip info files 267 269 gzip -f $RPM_BUILD_ROOT%{_prefix}/info/*.info 2>/dev/null 270 %if "%{gcc_version}" < "3.3" 271 # gcc-3.3 ships monolytic *.infos 268 272 gzip -f $RPM_BUILD_ROOT%{_prefix}/info/*.info-? 2>/dev/null 269 273 gzip -f $RPM_BUILD_ROOT%{_prefix}/info/*.info-?? 2>/dev/null 274 %endif 270 275 271 276 rm -f dirs ; … … 273 278 echo "%dir %{_prefix}/lib" >> dirs ; 274 279 echo "%dir %{_prefix}/lib/gcc-lib" >> dirs ; 275 echo "%dir %{_prefix}/lib/gcc-lib/ @target_alias@" >> dirs ;280 echo "%dir %{_prefix}/lib/gcc-lib/%{gcc_target}" >> dirs ; 276 281 277 282 # Collect multilib subdirectories 278 283 f=`gcc/xgcc -Bgcc/ --print-multi-lib | sed -e 's,;.*$,,'` 279 284 280 TGTDIR="%{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}"285 TGTDIR="%{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}" 281 286 for i in $f; do 282 287 case $i in … … 288 293 done 289 294 290 TGTDIR="%{_prefix}/ @target_alias@/lib"295 TGTDIR="%{_prefix}/%{gcc_target}/lib" 291 296 for i in $f; do 292 297 case $i in … … 305 310 cp dirs files.g++ 306 311 307 TGTDIR="%{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}"312 TGTDIR="%{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}" 308 313 f=`find ${RPM_BUILD_ROOT}${TGTDIR} ! -type d -print | sed -e "s,^$RPM_BUILD_ROOT,,g"`; 309 314 for i in $f; do … … 328 333 done 329 334 330 TGTDIR="%{_prefix}/ @target_alias@/lib"335 TGTDIR="%{_prefix}/%{gcc_target}/lib" 331 336 f=`find ${RPM_BUILD_ROOT}${TGTDIR} ! -type d -print | sed -e "s,^$RPM_BUILD_ROOT,,g"`; 332 337 for i in $f; do -
scripts/gcc3newlib/target-c++.add
r9789eefc rae67478 1 1 %if %build_cxx 2 2 # ============================================================== 3 # @target_alias@-c++3 # %{gcc_target}-c++ 4 4 # ============================================================== 5 %package -n @target_alias@-c++6 Provides: @target_alias@-c++7 Summary: gcc/g++ compiler (c++) for @target_alias@5 %package -n %{gcc_target}-c++ 6 Provides: %{gcc_target}-c++ 7 Summary: gcc/g++ compiler (c++) for %{gcc_target} 8 8 Group: rtems 9 Requires: rtems-base-gcc @target_alias@-gcc9 Requires: rtems-base-gcc %{gcc_target}-gcc 10 10 11 %description -n @target_alias@-c++11 %description -n %{gcc_target}-c++ 12 12 RTEMS is an open source operating system for embedded systems. 13 13 14 This is the gcc/g++ compiler for @target_alias@14 This is the gcc/g++ compiler for %{gcc_target} 15 15 16 %files -n @target_alias@-c++ -f build/files.g++16 %files -n %{gcc_target}-c++ -f build/files.g++ 17 17 %defattr(-,root,root) 18 %doc %{_prefix}/man/man1/ @target_alias@-g++.1*18 %doc %{_prefix}/man/man1/%{gcc_target}-g++.1* 19 19 20 20 %dir %{_prefix}/bin 21 %{_prefix}/bin/@target_alias@-c++%{_exeext} 22 %{_prefix}/bin/@target_alias@-g++%{_exeext} 23 %{_prefix}/bin/@target_alias@-c++filt%{_exeext} 21 %{_prefix}/bin/%{gcc_target}-c++%{_exeext} 22 %{_prefix}/bin/%{gcc_target}-g++%{_exeext} 23 %if "{gcc_version}" < "3.3" 24 %{_prefix}/bin/%{gcc_target}-c++filt%{_exeext} 25 %endif 24 26 25 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/cc1plus%{_exeext}26 %dir %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/include27 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/cc1plus%{_exeext} 28 %dir %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/include 27 29 %if "%{gcc_version}" >= "3.2" 28 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/include/c++30 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/include/c++ 29 31 %else 30 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/include/g++32 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/include/g++ 31 33 %endif 32 34 %endif -
scripts/gcc3newlib/target-g77.add
r9789eefc rae67478 1 1 %if %build_g77 2 2 # ============================================================== 3 # @target_alias@-g773 # %{gcc_target}-g77 4 4 # ============================================================== 5 %package -n @target_alias@-g776 Provides: @target_alias@-g777 Summary: gcc/g77 compiler for @target_alias@5 %package -n %{gcc_target}-g77 6 Provides: %{gcc_target}-g77 7 Summary: gcc/g77 compiler for %{gcc_target} 8 8 Group: rtems 9 Requires: rtems-base-g77 @target_alias@-gcc9 Requires: rtems-base-g77 %{gcc_target}-gcc 10 10 11 %description -n @target_alias@-g7711 %description -n %{gcc_target}-g77 12 12 RTEMS is an open source operating system for embedded systems. 13 13 14 This is the gcc/g77 compiler for @target_alias@14 This is the gcc/g77 compiler for %{gcc_target} 15 15 16 %files -n @target_alias@-g77 -f build/files.g7716 %files -n %{gcc_target}-g77 -f build/files.g77 17 17 %defattr(-,root,root) 18 18 %dir %{_prefix}/bin 19 %{_prefix}/bin/ @target_alias@-g77%{_exeext}19 %{_prefix}/bin/%{gcc_target}-g77%{_exeext} 20 20 21 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/f771%{_exeext}21 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/f771%{_exeext} 22 22 %endif -
scripts/gcc3newlib/target-gcc.add
r9789eefc rae67478 1 1 # ============================================================== 2 # @target_alias@-gcc2 # %{gcc_target}-gcc 3 3 # ============================================================== 4 %package -n @target_alias@-gcc5 Provides: @target_alias@-gcc6 Summary: rtems gcc and newlib C Library for @target_alias@4 %package -n %{gcc_target}-gcc 5 Provides: %{gcc_target}-gcc 6 Summary: rtems gcc and newlib C Library for %{gcc_target} 7 7 Group: rtems 8 Requires: @target_alias@-binutils rtems-base-gcc8 Requires: %{gcc_target}-binutils rtems-base-gcc 9 9 10 %description -n @target_alias@-gcc10 %description -n %{gcc_target}-gcc 11 11 RTEMS is an open source operating system for embedded systems. 12 12 13 This is gcc and newlib C Library for @target_alias@.13 This is gcc and newlib C Library for %{gcc_target}. 14 14 15 %files -n @target_alias@-gcc -f build/files.gcc15 %files -n %{gcc_target}-gcc -f build/files.gcc 16 16 %defattr(-,root,root) 17 %doc %{_prefix}/man/man1/ @target_alias@-gcc.1*17 %doc %{_prefix}/man/man1/%{gcc_target}-gcc.1* 18 18 19 %{_prefix}/bin/@target_alias@-cpp%{_exeext} 20 %{_prefix}/bin/@target_alias@-gcc%{_exeext} 21 %{_prefix}/bin/@target_alias@-gcov%{_exeext} 22 %{_prefix}/bin/@target_alias@-gccbug 23 %{_prefix}/@target_alias@/include 19 %{_prefix}/bin/%{gcc_target}-cpp%{_exeext} 20 %{_prefix}/bin/%{gcc_target}-gcc%{_exeext} 21 %if "%{gcc_version}" >= "3.3" 22 %{_prefix}/bin/%{gcc_target}-gcc-%{gcc_version}%{_exeext} 23 %endif 24 %{_prefix}/bin/%{gcc_target}-gcov%{_exeext} 25 %{_prefix}/bin/%{gcc_target}-gccbug 26 %{_prefix}/%{gcc_target}/include 24 27 25 %dir %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/include28 %dir %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/include -
scripts/gcc3newlib/target-gcj.add
r9789eefc rae67478 1 1 %if %build_gcj 2 2 # ============================================================== 3 # @target_alias@-gcj3 # %{gcc_target}-gcj 4 4 # ============================================================== 5 %package -n @target_alias@-gcj6 Provides: @target_alias@-gcj7 Summary: gcc/java compiler (gcj) for @target_alias@5 %package -n %{gcc_target}-gcj 6 Provides: %{gcc_target}-gcj 7 Summary: gcc/java compiler (gcj) for %{gcc_target} 8 8 Group: rtems 9 Requires: rtems-base-gcj @target_alias@-gcc9 Requires: rtems-base-gcj %{gcc_target}-gcc 10 10 11 %description -n @target_alias@-gcj11 %description -n %{gcc_target}-gcj 12 12 RTEMS is an open source operating system for embedded systems. 13 13 14 This is the gcc/java compiler for @target_alias@14 This is the gcc/java compiler for %{gcc_target} 15 15 16 %files -n @target_alias@-gcj -f build/files.gcj16 %files -n %{gcc_target}-gcj -f build/files.gcj 17 17 %defattr(-,root,root) 18 18 %dir %{_prefix}/bin 19 %{_prefix}/bin/ @target_alias@-gcj%{_exeext}20 %{_prefix}/bin/ @target_alias@-jcf-dump%{_exeext}21 %{_prefix}/bin/ @target_alias@-jv-scan%{_exeext}22 %{_prefix}/bin/ @target_alias@-gcjh%{_exeext}23 %{_prefix}/man/man1/ @target_alias@-gcj.119 %{_prefix}/bin/%{gcc_target}-gcj%{_exeext} 20 %{_prefix}/bin/%{gcc_target}-jcf-dump%{_exeext} 21 %{_prefix}/bin/%{gcc_target}-jv-scan%{_exeext} 22 %{_prefix}/bin/%{gcc_target}-gcjh%{_exeext} 23 %{_prefix}/man/man1/%{gcc_target}-gcj.1 24 24 25 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/jc1%{_exeext}26 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/jvgenmain%{_exeext}25 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/jc1%{_exeext} 26 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/jvgenmain%{_exeext} 27 27 28 28 %endif -
scripts/gcc3newlib/target-gnat.add
r9789eefc rae67478 1 1 %if %build_gnat 2 2 # ============================================================== 3 # @target_alias@-gnat3 # %{gcc_target}-gnat 4 4 # ============================================================== 5 %package -n @target_alias@-gnat6 Provides: @target_alias@-gnat7 Summary: gcc/gnat compiler for @target_alias@5 %package -n %{gcc_target}-gnat 6 Provides: %{gcc_target}-gnat 7 Summary: gcc/gnat compiler for %{gcc_target} 8 8 Group: rtems 9 Requires: rtems-base-gnat @target_alias@-gcc9 Requires: rtems-base-gnat %{gcc_target}-gcc 10 10 11 %description -n @target_alias@-gnat11 %description -n %{gcc_target}-gnat 12 12 RTEMS is an open source operating system for embedded systems. 13 13 14 This is the gcc/gnat compiler for @target_alias@14 This is the gcc/gnat compiler for %{gcc_target} 15 15 16 %files -n @target_alias@-gnat16 %files -n %{gcc_target}-gnat 17 17 %defattr(-,root,root) 18 # %files -n @target_alias@-gnat -f build/files.gnat18 # %files -n %{gcc_target}-gnat -f build/files.gnat 19 19 %dir %{_prefix}/bin 20 %{_prefix}/bin/ @target_alias@-gnat*20 %{_prefix}/bin/%{gcc_target}-gnat* 21 21 22 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/gnat1%{_exeext}23 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/adalib24 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/adainclude22 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/gnat1%{_exeext} 23 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/adalib 24 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/adainclude 25 25 %endif -
scripts/gcc3newlib/target-objc.add
r9789eefc rae67478 1 1 %if %build_objc 2 2 # ============================================================== 3 # @target_alias@-objc3 # %{gcc_target}-objc 4 4 # ============================================================== 5 %package -n @target_alias@-objc6 Provides: @target_alias@-objc7 Summary: gcc/objc compiler for @target_alias@5 %package -n %{gcc_target}-objc 6 Provides: %{gcc_target}-objc 7 Summary: gcc/objc compiler for %{gcc_target} 8 8 Group: rtems 9 Requires: @target_alias@-gcc9 Requires: %{gcc_target}-gcc 10 10 11 %description -n @target_alias@-objc11 %description -n %{gcc_target}-objc 12 12 RTEMS is an open source operating system for embedded systems. 13 13 14 This is the gcc/objc compiler for @target_alias@14 This is the gcc/objc compiler for %{gcc_target} 15 15 16 %files -n @target_alias@-objc -f build/files.objc16 %files -n %{gcc_target}-objc -f build/files.objc 17 17 %defattr(-,root,root) 18 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/cc1obj%{_exeext}19 %{_prefix}/lib/gcc-lib/ @target_alias@/%{gcc_version}/include/objc18 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/cc1obj%{_exeext} 19 %{_prefix}/lib/gcc-lib/%{gcc_target}/%{gcc_version}/include/objc 20 20 %endif
Note: See TracChangeset
for help on using the changeset viewer.