source: rtems/scripts/gdb/mkspec.in @ de819f6e

4.104.114.84.95
Last change on this file since de819f6e was de819f6e, checked in by Joel Sherrill <joel.sherrill@…>, on 02/10/03 at 16:32:27

2003-02-10 Joel Sherrill <joel@…>

  • gdb/gdb.add, gdb/mkspec.in, gdb/target-gdb.add: Use RPM logic to determine which targets have simulators, configure with appropriate arguments, and package the correct files.
  • Property mode set to 100644
File size: 965 bytes
Line 
1#!/bin/sh
2#
3#  Usage: mkspec CPU
4#
5
6RTEMS_DIR=`dirname $0`/@top_srcdir@
7
8CFG=../setup.cache
9
10specsrc=${RTEMS_DIR}/gdb/gdb.spec.in
11
12usage()
13{
14  echo "$0 [options] <target_alias>"
15  echo "  options:"
16  echo "    -cfg <setup.cache>"
17  echo "    -a <alternate specs.in>"
18  exit 1 ;
19}
20
21while test $# -ge 2; do
22case $1 in
23-cfg)
24  shift
25  CFG=$1
26  shift
27  ;;
28-a)        # alternate specs file
29  shift
30  specsrc=$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
51sed -e "s%@Release\@%${gdb_rpm_release}%g" \
52    -e "s,@rpm_build_root\@,${rpm_build_root},g" \
53    -e "s%@prefix\@%@prefix@%g" \
54    -e "s%@target_alias\@%${target_alias}%g" \
55    -e "s%@gdb_version\@%${gdb_version}%g" \
56    -e "s%@gdb_patch_version\@%${gdb_patch_version}%g" \
57    -e "s%@extra_configure_arguments\@%${extra_configure_arguments}%g" \
58< ${specsrc}
Note: See TracBrowser for help on using the repository browser.