|
|
@@ -3955,6 +3955,18 @@ if ($ARGV[0] eq "linktest") { |
|
|
|
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs); |
|
|
|
|
|
|
|
print "int main(void){\n"; |
|
|
|
foreach $objs (@underscore_objs) { |
|
|
|
print "extern void ", $symbolprefix, $objs, $bu, $symbolsuffix, "();\n" if $objs ne "xerbla"; |
|
|
|
} |
|
|
|
|
|
|
|
foreach $objs (@need_2underscore_objs) { |
|
|
|
print "extern void ", $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "();\n"; |
|
|
|
} |
|
|
|
|
|
|
|
foreach $objs (@no_underscore_objs) { |
|
|
|
print "extern void ", $symbolprefix, $objs, $symbolsuffix, "();\n"; |
|
|
|
} |
|
|
|
|
|
|
|
foreach $objs (@underscore_objs) { |
|
|
|
print $symbolprefix, $objs, $bu, $symbolsuffix, "();\n" if $objs ne "xerbla"; |
|
|
|
} |
|
|
|