source: rtems/scripts/mkgdbspec.in @ f326d12

4.104.114.84.95
Last change on this file since f326d12 was 620c972, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/29/02 at 07:40:53

2002-07-29 Ralf Corsepius <corsepiu@…>

  • ChangeLog?: Fix 2002-07-22 ChangeLog? entry bogusly referring to Joel.
  • cpukit/Makefile.am: New.
  • cpukit/mkspec.in: New.
  • cpukit/rtems-cpukit.spec.in: New.
  • cpukit/.cvsignore: New.
  • configure.ac: Add cpukit. Add RTEMS_TOP to pickup _RTEMS_VERSION (required by cpukit).
  • Makefile.am: Add cpukit. Add ACLOCAL_AMFLAGS (required to pickup RTEMS_VERSION).
  • setup.def: Use %{_tmppath} as default for $rpm_build_root.
  • mkbinutilsspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgccnewlibspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgcc3newlibspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgdbspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1#!/bin/sh
2#
3#  Usage: mkgdbspec 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
21while test $# -ge 2; do
22case $1 in
23-cfg)
24  shift
25  CFG=$1
26  shift
27  ;;
28-o)
29  shift
30  dst=$1
31  shift
32  ;;
33-*)
34  echo "invalid option $1";
35  usage
36  ;;
37esac
38done
39
40if test ! $# -eq 1;
41then
42  echo "Invalid number of arguments"
43  usage
44fi
45
46# target to build for
47target_alias=$1
48
49. ./$CFG
50
51specfile=${dst}/$target_alias-gdb-${gdb_version}.spec
52
53case ${target_alias} in
54  arm* | d10v* | d30v* | erc32* | fr30* | h8300* | h8500* | hppa1.1* | \
55  i960* | m32r* | mcore* | mips* | mn10200* | mn10300* | sh* | sparc*| \
56  v850* | w65* | z8k*)
57    extra_configure_arguments="--enable-sim"
58    ;;
59  powerpc*)
60    extra_configure_arguments="--enable-sim --enable-sim-powerpc --enable-sim-timebase --enable-sim-hardware"
61    #  Enabling this causes the program image to be huge and causes
62    #  some gcc/hosts combinations to run out of memory.
63    #          --enable-sim-inline
64    ;;
65  *)
66    ;;
67esac
68
69sed -e "s%@Release\@%${gdb_rpm_release}%g" \
70    -e "s,@rpm_build_root\@,${rpm_build_root},g" \
71    -e "s%@target_alias\@%${target_alias}%g" \
72    -e "s%@gdb_version\@%${gdb_version}%g" \
73    -e "s%@gdb_patch_version\@%${gdb_patch_version}%g" \
74    -e "s%@extra_configure_arguments\@%${extra_configure_arguments}%g" \
75    -e "s%@exe_ext\@%${exe_ext}%g" \
76< ${RTEMS_DIR}/gdb/gdb.spec.in \
77> ${specfile}
78
79case ${target_alias} in
80  arm* | d10v* | d30v* | erc32* | fr30* | h8300* | h8500* | i960* | m32r* | \
81  mcore* | mips* | mn10200* | mn10300* | powerpc* | sh* | v850* | w65* | z8k*)
82     echo "/opt/rtems/bin/${target_alias}-run${exe_ext}"
83     ;;
84  sparc*)
85     echo "/opt/rtems/bin/${target_alias}-run${exe_ext}"
86     echo "/opt/rtems/bin/${target_alias}-sis${exe_ext}"
87     ;;
88  *) ;;
89esac >> ${specfile}
90
91echo Generated ${specfile}
Note: See TracBrowser for help on using the repository browser.