source: rtems/scripts/mkgcc3newlibspec.in @ 6e9746a2

4.104.114.84.95
Last change on this file since 6e9746a2 was 6e9746a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/02 at 16:38:16

2002-06-15 Ralf Corsepius <corsepiu@…>

  • mkgcc3newlibspec.in: Remove SETUP (bogus).
  • gcc3newlib/target-c++.add: New.
  • gcc3newlib/Makefile.am: Add target-c++.add.
  • gcc3newlib/base-g77.add: Adapt to gcc-3.1. Reflect having split out c++. Various minor fixes.
  • gcc3newlib/base-gcc.add: Ditto.
  • gcc3newlib/gccnewlib.add: Ditto.
  • gcc3newlib/target-gcc.add: Ditto.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1#!/bin/sh
2#
3#  Usage: mktoolspec CPU
4#
5
6RTEMS_DIR=`dirname $0`/@top_srcdir@
7
8CFG=setup.cache
9dst=@RPM_SPECSdir@
10exe_ext=@EXEEXT@
11
12usage()
13{
14  echo "$0 [options] <target_alias>"
15  echo "  options:"
16  echo "    -cfg <setup.cache>"
17  echo "    -o <rpm-spec-dir>"
18  exit 1 ;
19}
20
21specsrc=${RTEMS_DIR}/gcc3newlib/gccnewlib.spec.in
22
23while test $# -ge 2; do
24case $1 in
25-cfg)
26  shift
27  CFG=$1
28  shift
29  ;;
30-o)
31  shift
32  dst=$1
33  shift
34  ;;
35-a)        # alternate specs file
36  shift
37  specsrc=$1
38  shift
39  ;;
40-*)
41  echo "invalid option $1";
42  usage
43  ;;
44esac
45done
46
47if test ! $# -eq 1;
48then
49  echo "Invalid number of arguments"
50  usage
51fi
52
53# target to build for
54target_alias=$1
55
56. ./$CFG
57
58specfile=${dst}/${target_alias}-gcc-${gcc3_version}-newlib-${gcc3newlib_version}.spec
59
60patchn=-1
61if test -n "${gcc3_patch_version}"; then
62patchn=`expr $patchn + 1`
63PATCH1="Patch${patchn}: gcc-${gcc3_version}-rtems-${gcc3_patch_version}.diff"
64PATCH2="%patch${patchn} -p0"
65fi
66
67if test -n "${gcc3newlib_patch_version}"; then
68patchn=`expr $patchn + 1`
69PATCH3="Patch${patchn}: newlib-${gcc3newlib_version}-rtems-${gcc3newlib_patch_version}.diff"
70PATCH4="%patch${patchn} -p0"
71fi
72
73# note that the variables in the gcc3newlib directory are actually the same
74sed -e "s,@PATCH1\@,${PATCH1}," \
75    -e "s,@PATCH2\@,${PATCH2}," \
76    -e "s,@PATCH3\@,${PATCH3}," \
77    -e "s,@PATCH4\@,${PATCH4}," \
78    -e "s%@Release\@%${gcc3newlib_rpm_release}%g" \
79    -e "s%@target_alias\@%${target_alias}%g" \
80    -e "s%@prefix\@%@prefix@%g" \
81    -e "s%@rpm_build_root\@%${rpm_build_root}%g" \
82    -e "s%@gcc_version\@%${gcc3_version}%g" \
83    -e "s%@gcc_patch_version\@%${gcc3_patch_version}%g" \
84    -e "s%@newlib_version\@%${gcc3newlib_version}%g" \
85    -e "s%@newlib_patch_version\@%${gcc3newlib_patch_version}%g" \
86    -e "s%@exe_ext\@%${exe_ext}%g" \
87< ${specsrc} \
88> ${specfile}
89
90echo Generated ${specfile}.
Note: See TracBrowser for help on using the repository browser.