OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [gdb/] [testsuite/] [lib/] [pascal.exp] - Diff between revs 24 and 33

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
# Copyright 2007, 2008 Free Software Foundation, Inc.
# Copyright 2007, 2008 Free Software Foundation, Inc.
#
#
# This program is free software; you can redistribute it and/or modify
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
load_lib libgloss.exp
load_lib libgloss.exp
set pascal_init_done 0
set pascal_init_done 0
# This procedure looks for a suitable pascal compiler
# This procedure looks for a suitable pascal compiler
# For now only GNU pascal compiler and Free Pascal compiler
# For now only GNU pascal compiler and Free Pascal compiler
# are searched.
# are searched.
# First, environment variable GPC is checked
# First, environment variable GPC is checked
# if present, GPC compiler is assumed to be the value of
# if present, GPC compiler is assumed to be the value of
# that environment variable.
# that environment variable.
# Second, environment variable FPC is checked
# Second, environment variable FPC is checked
# if present, Free Pascal compiler is assumed to be the value of
# if present, Free Pascal compiler is assumed to be the value of
# that environment variable.
# that environment variable.
# Third, gpc executable is searched using `which gpc`
# Third, gpc executable is searched using `which gpc`
# Lastly, fpc executable is searched using `which fpc`
# Lastly, fpc executable is searched using `which fpc`
# Using environment variable allows to force
# Using environment variable allows to force
# which compiler is used in testsuite
# which compiler is used in testsuite
proc pascal_init {} {
proc pascal_init {} {
    global pascal_init_done
    global pascal_init_done
    global pascal_compiler_is_gpc
    global pascal_compiler_is_gpc
    global pascal_compiler_is_fpc
    global pascal_compiler_is_fpc
    global gpc_compiler
    global gpc_compiler
    global fpc_compiler
    global fpc_compiler
    global env
    global env
    if { $pascal_init_done == 1 } {
    if { $pascal_init_done == 1 } {
        return
        return
    }
    }
    set pascal_compiler_is_gpc 0
    set pascal_compiler_is_gpc 0
    set pascal_compiler_is_fpc 0
    set pascal_compiler_is_fpc 0
    set gpc_compiler [transform gpc]
    set gpc_compiler [transform gpc]
    set fpc_compiler [transform fpc]
    set fpc_compiler [transform fpc]
    if ![is_remote host] {
    if ![is_remote host] {
        if { [info exists env(GPC)] } {
        if { [info exists env(GPC)] } {
            set pascal_compiler_is_gpc 1
            set pascal_compiler_is_gpc 1
            set gpc_compiler $env(GPC)
            set gpc_compiler $env(GPC)
            verbose -log "Assuming GNU Pascal ($gpc_compiler)"
            verbose -log "Assuming GNU Pascal ($gpc_compiler)"
        } elseif { [info exists env(FPC)] } {
        } elseif { [info exists env(FPC)] } {
            set pascal_compiler_is_fpc 1
            set pascal_compiler_is_fpc 1
            set fpc_compiler $env(FPC)
            set fpc_compiler $env(FPC)
            verbose -log "Assuming Free Pascal ($fpc_compiler)"
            verbose -log "Assuming Free Pascal ($fpc_compiler)"
        } elseif { [which $gpc_compiler] != 0 } {
        } elseif { [which $gpc_compiler] != 0 } {
            set pascal_compiler_is_gpc 1
            set pascal_compiler_is_gpc 1
            verbose -log "GNU Pascal compiler found"
            verbose -log "GNU Pascal compiler found"
        } elseif { [which $fpc_compiler] != 0 } {
        } elseif { [which $fpc_compiler] != 0 } {
            set pascal_compiler_is_fpc 1
            set pascal_compiler_is_fpc 1
            verbose -log "Free Pascal compiler found"
            verbose -log "Free Pascal compiler found"
        }
        }
    }
    }
    set pascal_init_done 1
    set pascal_init_done 1
}
}
proc gpc_compile {source dest type options} {
proc gpc_compile {source dest type options} {
    global gpc_compiler
    global gpc_compiler
    set add_flags ""
    set add_flags ""
    if {$type == "object"} {
    if {$type == "object"} {
        append add_flags " -c"
        append add_flags " -c"
    }
    }
    if { $type == "preprocess" } {
    if { $type == "preprocess" } {
        append add_flags " -E"
        append add_flags " -E"
    }
    }
    if { $type == "assembly" } {
    if { $type == "assembly" } {
        append add_flags " -S"
        append add_flags " -S"
    }
    }
    foreach i $options {
    foreach i $options {
        if { $i == "debug" } {
        if { $i == "debug" } {
            if [board_info $dest exists debug_flags] {
            if [board_info $dest exists debug_flags] {
                append add_flags " [board_info $dest debug_flags]";
                append add_flags " [board_info $dest debug_flags]";
            } else {
            } else {
                append add_flags " -g"
                append add_flags " -g"
            }
            }
        }
        }
    }
    }
    set result [remote_exec host $gpc_compiler "-o $dest --automake $add_flags $source"]
    set result [remote_exec host $gpc_compiler "-o $dest --automake $add_flags $source"]
    return $result
    return $result
}
}
proc fpc_compile {source dest type options} {
proc fpc_compile {source dest type options} {
    global fpc_compiler
    global fpc_compiler
    set add_flags ""
    set add_flags ""
    if {$type == "object"} {
    if {$type == "object"} {
        append add_flags " -Cn"
        append add_flags " -Cn"
    }
    }
    if { $type == "preprocess" } {
    if { $type == "preprocess" } {
        return "Free Pascal can not preprocess"
        return "Free Pascal can not preprocess"
    }
    }
    if { $type == "assembly" } {
    if { $type == "assembly" } {
        append add_flags " -al"
        append add_flags " -al"
    }
    }
    foreach i $options {
    foreach i $options {
        if { $i == "debug" } {
        if { $i == "debug" } {
            if [board_info $dest exists debug_flags] {
            if [board_info $dest exists debug_flags] {
                append add_flags " [board_info $dest debug_flags]";
                append add_flags " [board_info $dest debug_flags]";
            } else {
            } else {
                append add_flags " -g"
                append add_flags " -g"
            }
            }
        }
        }
    }
    }
    set result [remote_exec host $fpc_compiler "-o$dest $add_flags $source"]
    set result [remote_exec host $fpc_compiler "-o$dest $add_flags $source"]
    return $result
    return $result
}
}
proc gdb_compile_pascal {source dest type options} {
proc gdb_compile_pascal {source dest type options} {
    global pascal_init_done
    global pascal_init_done
    global pascal_compiler_is_gpc
    global pascal_compiler_is_gpc
    global pascal_compiler_is_fpc
    global pascal_compiler_is_fpc
    if { $pascal_init_done == 0 } {
    if { $pascal_init_done == 0 } {
        pascal_init
        pascal_init
    }
    }
    if { $pascal_compiler_is_fpc == 1 } {
    if { $pascal_compiler_is_fpc == 1 } {
        set result [fpc_compile $source $dest $type $options]
        set result [fpc_compile $source $dest $type $options]
    } elseif { $pascal_compiler_is_gpc == 1 } {
    } elseif { $pascal_compiler_is_gpc == 1 } {
        set result [gpc_compile $source $dest $type $options]
        set result [gpc_compile $source $dest $type $options]
    } else {
    } else {
        unsupported "No pascal compiler found"
        unsupported "No pascal compiler found"
        return "No pascal compiler. Compilation failed."
        return "No pascal compiler. Compilation failed."
    }
    }
    if ![file exists $dest] {
    if ![file exists $dest] {
        unsupported "Pascal compilation failed: $result"
        unsupported "Pascal compilation failed: $result"
        return "Pascal compilation failed."
        return "Pascal compilation failed."
    }
    }
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.