[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[DejaGnu] Re: integrating with libgloss: finding baseboards
From: |
Benjamin Kosnik |
Subject: |
[DejaGnu] Re: integrating with libgloss: finding baseboards |
Date: |
Sat, 12 May 2001 23:56:37 -0700 (PDT) |
Ok, so this small patch to baseboards/basic-sid.exp fixes that problem...
Index: baseboards/basic-sid.exp
===================================================================
RCS file: /cvs/cvsfiles/devo/dejagnu/baseboards/basic-sid.exp,v
retrieving revision 1.1.86.2
diff -c -p -r1.1.86.2 basic-sid.exp
*** basic-sid.exp 2001/05/08 18:33:32 1.1.86.2
--- basic-sid.exp 2001/05/13 06:49:47
*************** proc find_sid_conf { config } {
*** 30,36 ****
if { [find_rawsid] == "sid" } {
foreach dir [split $env(PATH) ":"] {
if [file exists [file join $dir "sid"]] {
! set try $dir/../../share/sid/${config}.conf
break
}
}
--- 30,36 ----
if { [find_rawsid] == "sid" } {
foreach dir [split $env(PATH) ":"] {
if [file exists [file join $dir "sid"]] {
! set try $dir/../share/sid/${config}.conf
break
}
}
However I now get...
PASS: 17_intro/header_cassert.cc (test for excess errors)
spawn sid -f
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf
-e set loader file ./a.out
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:7:
dlsym of mapper_component_library in component library dso libmapper.la
failed: sid: undefined symbol: mapper_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:8:
dlsym of cgen_component_library in component library dso libcgencpu.la failed:
sid: undefined symbol: cgen_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:9:
dlsym of console_component_library in component library dso libconsoles.la
failed: sid: undefined symbol: console_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:10:
dlsym of sched_component_library in component library dso libsched.la failed:
sid: undefined symbol: sched_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:11:
dlsym of parport_component_library in component library dso libparport.la
failed: sid: undefined symbol: parport_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:12:
dlsym of gloss_component_library in component library dso libgloss.la failed:
sid: undefined symbol: gloss_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:13:
dlsym of hd44780u_component_library in component library dso libhd44780u.la
failed: sid: undefined symbol: hd44780u_component_library
/mnt/hd/ahimsa/H-x86-calmrisc32-010108-branch-naked-sid/bin/../share/sid/calmrisc32-gloss.conf:14:
dlsym of rtc_component_library in component library dso librtc.la failed: sid:
undefined symbol: rtc_component_library
/mnt/h
[snip]
So, something is still not right... any clues?
-benjamin