source: rtems/scripts/mkgccnewlibspec.in @ 3bcc0d8

4.104.114.84.95
Last change on this file since 3bcc0d8 was 64cc4bb5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/01 at 17:49:35

2001-10-15 Ralf Corsepius <corsepiu@…>

  • mkbinutilsspec.in: Guard sed-pattern against autoconf.
  • mkgccnewlibspec.in: Guard sed-pattern against autoconf, remove Target_alias.
  • mkgdbspec.in: Guard sed-pattern against autoconf.
  • mkbspspec.in: Guard sed-pattern against autoconf.
  • configure.ac: Rework check for RPM_SPECSdir.
  • autotools/automake-rtems.spec: Update to automake-1.5.
  • Property mode set to 100644
File size: 1.2 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}/gccnewlib/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-${gcc_version}-newlib-${newlib_version}.spec
59
60sed -e "s%@Release\@%${gccnewlib_rpm_release}%g" \
61    -e "s%@target_alias\@%${target_alias}%g" \
62    -e "s%@rpm_build_root\@%${rpm_build_root}%g" \
63    -e "s%@gcc_version\@%${gcc_version}%g" \
64    -e "s%@gcc_patch_version\@%${gcc_patch_version}%g" \
65    -e "s%@newlib_version\@%${newlib_version}%g" \
66    -e "s%@newlib_patch_version\@%${newlib_patch_version}%g" \
67    -e "s%@exe_ext\@%${exe_ext}%g" \
68< ${specsrc} \
69> ${specfile}
70
71echo Generated ${specfile}.
Note: See TracBrowser for help on using the repository browser.