aboutsummaryrefslogtreecommitdiff
path: root/libffi/testsuite/lib/libffi-dg.exp
diff options
context:
space:
mode:
Diffstat (limited to 'libffi/testsuite/lib/libffi-dg.exp')
-rw-r--r--libffi/testsuite/lib/libffi-dg.exp14
1 files changed, 12 insertions, 2 deletions
diff --git a/libffi/testsuite/lib/libffi-dg.exp b/libffi/testsuite/lib/libffi-dg.exp
index f8a36242a0c..95d09c17da6 100644
--- a/libffi/testsuite/lib/libffi-dg.exp
+++ b/libffi/testsuite/lib/libffi-dg.exp
@@ -17,6 +17,8 @@
load_lib dg.exp
load_lib libgloss.exp
+
+
# Define libffi callbacks for dg.exp.
proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
@@ -134,6 +136,7 @@ proc libffi-init { args } {
setenv LD_LIBRARYN32_PATH $ld_library_path
setenv LD_LIBRARY64_PATH $ld_library_path
setenv LD_LIBRARY_PATH_64 $ld_library_path
+ setenv DYLD_LIBRARY_PATH $ld_library_path
}
proc libffi_target_compile { source dest type options } {
@@ -144,6 +147,7 @@ proc libffi_target_compile { source dest type options } {
global ld_library_path
global libffi_link_flags
global libffi_include
+ global target_triplet
if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
@@ -158,9 +162,15 @@ proc libffi_target_compile { source dest type options } {
}
# search for ffi_mips.h in srcdir, too
- lappend options "additional_flags=-I${libffi_include} -I${srcdir}/../include"
+ lappend options "additional_flags=-I${libffi_include} -I${srcdir}/../include -I${libffi_include}/.."
lappend options "additional_flags=${libffi_link_flags}"
+
+ if { [string match "powerpc-*-darwin*" $target_triplet] } {
+ lappend options "libs= -lgcc_s"
+ }
+
lappend options "libs= -lffi"
+
verbose "options: $options"
return [target_compile $source $dest $type $options]
}
@@ -255,4 +265,4 @@ if { [info procs saved-dg-test] == [list] } {
# Local Variables:
# tcl-indent-level:4
-# End: \ No newline at end of file
+# End: