testsuite, cobol: Add libquadmath paths.
Even when we are using IEC 128b floating point, the quadmath library can be pulled in 'as needed'. gcc/testsuite/ChangeLog: * lib/cobol.exp: Add libquadmath paths. Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
This commit is contained in:
parent
4c8c373495
commit
f1e82c859f
1 changed files with 9 additions and 0 deletions
|
@ -122,6 +122,15 @@ proc cobol_link_flags { paths } {
|
|||
}
|
||||
append ld_library_path ":${gccpath}/libgcobol/.libs"
|
||||
}
|
||||
if { [file exists "${gccpath}/libquadmath/.libs/libquadmath.a"] ||
|
||||
[file exists "${gccpath}/libquadmath/.libs/libquadmath.${shlib_ext}"] } {
|
||||
if { $target_wants_B_option } {
|
||||
append flags "-B${gccpath}/libquadmath/.libs "
|
||||
} else {
|
||||
append flags "-L${gccpath}/libquadmath/.libs "
|
||||
}
|
||||
append ld_library_path ":${gccpath}/libquadmath/.libs"
|
||||
}
|
||||
if { [file exists "${gccpath}/libstdc++-v3/src/.libs/libstdc++.a"] ||
|
||||
[file exists "${gccpath}/libstdc++-v3/src/.libs/libstdc++.${shlib_ext}"] } {
|
||||
if { $target_wants_B_option } {
|
||||
|
|
Loading…
Add table
Reference in a new issue