dejagnu
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: SIM env. variable question in baseboards


From: Steve Ellcey
Subject: Re: SIM env. variable question in baseboards
Date: Mon, 11 Jun 2012 17:00:16 -0700

I finally created a generic-sim.exp file that reads environment files
and have used it for some of my GCC testing.  Here is what I created, it
looks for DEJAGNU_SIM, DEJAGNU_SIM_MULTILIB_OPTIONS, DEJAGNU_SIM_GCC,
DEJAGNU_SIM_INCLUDE_FLAGS, DEJAGNU_SIM_LINK_FLAGS, 
DEJAGNU_SIM_LDSCRIPT, and DEJAGNU_SIM_BOARD_INFO.  This seems to cover
most of what I saw used in the various baseboards.

DEJAGNU_SIM_BOARD_INFO is in tcl list format like:

DEJAGNU_SIM_BOARD_INFO="{noargs 1} {gcc,stack_size 5000}"

which results in:

        set_board_info noargs 1
        set_board_info gcc,stack_size 5000


Steve Ellcey
address@hidden



# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software
# Foundation, Inc.
#
# This file is part of DejaGnu.
#
# DejaGnu is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# DejaGnu is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.

# Use env to check env. variables and modify the simulator.
global env
global SIM

# Load the generic configuration for this board. This will define a basic
# set of routines needed by the tool to communicate with the board.
load_generic_config "sim"

# basic-sim.exp is a basic description for the standard Cygnus simulator.
load_base_board_description "basic-sim"

# The TCL SIM variable takes precedence over the DEJAGNU_SIM env. variable
if {[info exists env(DEJAGNU_SIM)] && ![info exists SIM]} {
  set SIM $env(DEJAGNU_SIM)
}

# This tells it which directory to look in for the simulator.
setup_sim sim

# No multilib flags are set by default.
if {[info exists env(DEJAGNU_SIM_MULTILIB_OPTIONS)]} {
  process_multilib_options "$env(DEJAGNU_SIM_MULTILIB_OPTIONS)"
} else {
  process_multilib_options ""
}

# The compiler used to build for this board. This has *nothing* to do
# with what compiler is tested if we're testing gcc.
if {[info exists env(DEJAGNU_SIM_GCC)]} {
  set_board_info compiler "$env(DEJAGNU_SIM_GCC)"
} else {
  set_board_info compiler "[find_gcc]"
}

if {[info exists env(DEJAGNU_SIM_INCLUDE_FLAGS)]} {
  set_board_info cflags "[libgloss_include_flags] [newlib_include_flags] 
$env(DEJAGNU_SIM_INCLUDE_FLAGS)"
} else {
  set_board_info cflags "[libgloss_include_flags] [newlib_include_flags]"
}
if {[info exists env(DEJAGNU_SIM_LINK_FLAGS)]} {
  set_board_info ldflags "[libgloss_link_flags] [newlib_link_flags] 
$env(DEJAGNU_SIM_LINK_FLAGS)"
} else {
  set_board_info ldflags "[libgloss_link_flags] [newlib_link_flags]"
}
if {[info exists env(DEJAGNU_SIM_LDSCRIPT)]} {
  set_board_info ldscript "$env(DEJAGNU_SIM_LDSCRIPT)"
}

if {[info exists env(DEJAGNU_SIM_BOARD_INFO)]} {
  foreach e $env(DEJAGNU_SIM_BOARD_INFO) {
    set_board_info [lindex $e 0] [lindex $e 1]
  }
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]