add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
for adding a prefix or suffix to all exported symbol names in the shared library Useful to avoid conflicts with other BLAS libraries, especially when using 64 bit integer interfaces in OpenBLAS Note that since OSX does not have the objcopy utility, setting these options to non-empty values on Mac requires the objconv tool, available (GPL license) from http://www.agner.org/optimize/#objconv
This commit is contained in:
parent
ac5a7e1c1b
commit
0b4602b753
|
@ -186,6 +186,8 @@ LD = $(CROSS_SUFFIX)ld
|
||||||
RANLIB = $(CROSS_SUFFIX)ranlib
|
RANLIB = $(CROSS_SUFFIX)ranlib
|
||||||
NM = $(CROSS_SUFFIX)nm
|
NM = $(CROSS_SUFFIX)nm
|
||||||
DLLWRAP = $(CROSS_SUFFIX)dllwrap
|
DLLWRAP = $(CROSS_SUFFIX)dllwrap
|
||||||
|
OBJCOPY = $(CROSS_SUFFIX)objcopy
|
||||||
|
OBJCONV = $(CROSS_SUFFIX)objconv
|
||||||
|
|
||||||
#
|
#
|
||||||
# OS dependent settings
|
# OS dependent settings
|
||||||
|
@ -845,6 +847,14 @@ else
|
||||||
LIBPREFIX = libopenblas_$(LIBNAMESUFFIX)
|
LIBPREFIX = libopenblas_$(LIBNAMESUFFIX)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef SYMBOLPREFIX
|
||||||
|
SYMBOLPREFIX =
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef SYMBOLSUFFIX
|
||||||
|
SYMBOLSUFFIX =
|
||||||
|
endif
|
||||||
|
|
||||||
KERNELDIR = $(TOPDIR)/kernel/$(ARCH)
|
KERNELDIR = $(TOPDIR)/kernel/$(ARCH)
|
||||||
|
|
||||||
include $(TOPDIR)/Makefile.$(ARCH)
|
include $(TOPDIR)/Makefile.$(ARCH)
|
||||||
|
|
|
@ -88,12 +88,18 @@ dll : ../$(LIBDLLNAME)
|
||||||
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive $(FEXTRALIB) $(EXTRALIB)
|
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive $(FEXTRALIB) $(EXTRALIB)
|
||||||
|
|
||||||
libopenblas.def : gensymbol
|
libopenblas.def : gensymbol
|
||||||
perl ./gensymbol win2k $(ARCH) dummy $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) > $(@F)
|
perl ./gensymbol win2k $(ARCH) dummy $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
libgoto_hpl.def : gensymbol
|
libgoto_hpl.def : gensymbol
|
||||||
perl ./gensymbol win2khpl $(ARCH) dummy $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) > $(@F)
|
perl ./gensymbol win2khpl $(ARCH) dummy $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
|
ifeq (, $(SYMBOLPREFIX)$(SYMBOLSUFFIX))
|
||||||
$(LIBDYNNAME) : ../$(LIBNAME) osx.def
|
$(LIBDYNNAME) : ../$(LIBNAME) osx.def
|
||||||
|
else
|
||||||
|
../$(LIBNAME).renamed : ../$(LIBNAME) objconv.def
|
||||||
|
$(OBJCONV) @objconv.def ../$(LIBNAME) ../$(LIBNAME).renamed
|
||||||
|
$(LIBDYNNAME) : ../$(LIBNAME).renamed osx.def
|
||||||
|
endif
|
||||||
$(FC) $(FFLAGS) -all_load -headerpad_max_install_names -install_name $(CURDIR)/../$(LIBDYNNAME) -dynamiclib -o ../$(LIBDYNNAME) $< -Wl,-exported_symbols_list,osx.def $(FEXTRALIB)
|
$(FC) $(FFLAGS) -all_load -headerpad_max_install_names -install_name $(CURDIR)/../$(LIBDYNNAME) -dynamiclib -o ../$(LIBDYNNAME) $< -Wl,-exported_symbols_list,osx.def $(FEXTRALIB)
|
||||||
|
|
||||||
dllinit.$(SUFFIX) : dllinit.c
|
dllinit.$(SUFFIX) : dllinit.c
|
||||||
|
@ -103,16 +109,22 @@ ifeq ($(OSNAME), Linux)
|
||||||
|
|
||||||
so : ../$(LIBSONAME)
|
so : ../$(LIBSONAME)
|
||||||
|
|
||||||
|
ifeq (, $(SYMBOLPREFIX)$(SYMBOLSUFFIX))
|
||||||
../$(LIBSONAME) : ../$(LIBNAME) linktest.c
|
../$(LIBSONAME) : ../$(LIBNAME) linktest.c
|
||||||
|
else
|
||||||
|
../$(LIBNAME).renamed : ../$(LIBNAME) objcopy.def
|
||||||
|
$(OBJCOPY) --redefine-syms objcopy.def ../$(LIBNAME) ../$(LIBNAME).renamed
|
||||||
|
../$(LIBSONAME) : ../$(LIBNAME).renamed linktest.c
|
||||||
|
endif
|
||||||
ifneq ($(C_COMPILER), LSB)
|
ifneq ($(C_COMPILER), LSB)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
||||||
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive \
|
-Wl,--whole-archive $< -Wl,--no-whole-archive \
|
||||||
-Wl,-soname,$(LIBPREFIX).so.$(MAJOR_VERSION) $(EXTRALIB)
|
-Wl,-soname,$(LIBPREFIX).so.$(MAJOR_VERSION) $(EXTRALIB)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
||||||
else
|
else
|
||||||
#for LSB
|
#for LSB
|
||||||
env LSBCC_SHAREDLIBS=gfortran $(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
env LSBCC_SHAREDLIBS=gfortran $(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
||||||
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive \
|
-Wl,--whole-archive $< -Wl,--no-whole-archive \
|
||||||
-Wl,-soname,$(LIBPREFIX).so.$(MAJOR_VERSION) $(EXTRALIB)
|
-Wl,-soname,$(LIBPREFIX).so.$(MAJOR_VERSION) $(EXTRALIB)
|
||||||
$(FC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
$(FC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
||||||
endif
|
endif
|
||||||
|
@ -125,9 +137,15 @@ ifeq ($(OSNAME), $(filter $(OSNAME),FreeBSD NetBSD))
|
||||||
|
|
||||||
so : ../$(LIBSONAME)
|
so : ../$(LIBSONAME)
|
||||||
|
|
||||||
|
ifeq (, $(SYMBOLPREFIX)$(SYMBOLSUFFIX))
|
||||||
../$(LIBSONAME) : ../$(LIBNAME) linktest.c
|
../$(LIBSONAME) : ../$(LIBNAME) linktest.c
|
||||||
|
else
|
||||||
|
../$(LIBNAME).renamed : ../$(LIBNAME) objcopy.def
|
||||||
|
$(OBJCOPY) --redefine-syms objcopy.def ../$(LIBNAME) ../$(LIBNAME).renamed
|
||||||
|
../$(LIBSONAME) : ../$(LIBNAME).renamed linktest.c
|
||||||
|
endif
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
||||||
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive \
|
-Wl,--whole-archive $< -Wl,--no-whole-archive \
|
||||||
$(FEXTRALIB) $(EXTRALIB)
|
$(FEXTRALIB) $(EXTRALIB)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
||||||
rm -f linktest
|
rm -f linktest
|
||||||
|
@ -178,17 +196,23 @@ static : ../$(LIBNAME)
|
||||||
rm -f goto.$(SUFFIX)
|
rm -f goto.$(SUFFIX)
|
||||||
|
|
||||||
osx.def : gensymbol ../Makefile.system ../getarch.c
|
osx.def : gensymbol ../Makefile.system ../getarch.c
|
||||||
perl ./gensymbol osx $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) > $(@F)
|
perl ./gensymbol osx $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
aix.def : gensymbol ../Makefile.system ../getarch.c
|
aix.def : gensymbol ../Makefile.system ../getarch.c
|
||||||
perl ./gensymbol aix $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) > $(@F)
|
perl ./gensymbol aix $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
|
objcopy.def : gensymbol ../Makefile.system ../getarch.c
|
||||||
|
perl ./gensymbol objcopy $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
|
objconv.def : gensymbol ../Makefile.system ../getarch.c
|
||||||
|
perl ./gensymbol objconv $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > $(@F)
|
||||||
|
|
||||||
test : linktest.c
|
test : linktest.c
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) -lm && echo OK.
|
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) -lm && echo OK.
|
||||||
rm -f linktest
|
rm -f linktest
|
||||||
|
|
||||||
linktest.c : gensymbol ../Makefile.system ../getarch.c
|
linktest.c : gensymbol ../Makefile.system ../getarch.c
|
||||||
perl ./gensymbol linktest $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) > linktest.c
|
perl ./gensymbol linktest $(ARCH) $(BU) $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" > linktest.c
|
||||||
|
|
||||||
clean ::
|
clean ::
|
||||||
@rm -f *.def *.dylib __.SYMDEF*
|
@rm -f *.def *.dylib __.SYMDEF*
|
||||||
|
|
|
@ -2784,22 +2784,26 @@ $bu = $ARGV[2];
|
||||||
|
|
||||||
$bu = "" if (($bu eq "0") || ($bu eq "1"));
|
$bu = "" if (($bu eq "0") || ($bu eq "1"));
|
||||||
|
|
||||||
|
$symbolprefix = $ARGV[9];
|
||||||
|
|
||||||
|
$symbolsuffix = $ARGV[10];
|
||||||
|
|
||||||
if ($ARGV[0] eq "osx"){
|
if ($ARGV[0] eq "osx"){
|
||||||
|
|
||||||
@underscore_objs = (@underscore_objs, @misc_common_objs);
|
@underscore_objs = (@underscore_objs, @misc_common_objs);
|
||||||
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
||||||
|
|
||||||
foreach $objs (@underscore_objs) {
|
foreach $objs (@underscore_objs) {
|
||||||
print "_", $objs, $bu, "\n";
|
print "_", $symbolprefix, $objs, $bu, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach $objs (@need_2underscore_objs) {
|
foreach $objs (@need_2underscore_objs) {
|
||||||
print "_", $objs, $bu, $bu, "\n";
|
print "_", $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
# if ($ARGV[4] == 0) {
|
# if ($ARGV[4] == 0) {
|
||||||
foreach $objs (@no_underscore_objs) {
|
foreach $objs (@no_underscore_objs) {
|
||||||
print "_", $objs, "\n";
|
print "_", $symbolprefix, $objs, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
# }
|
# }
|
||||||
exit(0);
|
exit(0);
|
||||||
|
@ -2811,16 +2815,58 @@ if ($ARGV[0] eq "aix"){
|
||||||
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
||||||
|
|
||||||
foreach $objs (@underscore_objs) {
|
foreach $objs (@underscore_objs) {
|
||||||
print $objs, $bu, "\n";
|
print $symbolprefix, $objs, $bu, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach $objs (@need_2underscore_objs) {
|
foreach $objs (@need_2underscore_objs) {
|
||||||
print $objs, $bu, $bu, "\n";
|
print $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
# if ($ARGV[4] == 0) {
|
# if ($ARGV[4] == 0) {
|
||||||
foreach $objs (@no_underscore_objs) {
|
foreach $objs (@no_underscore_objs) {
|
||||||
print $objs, "\n";
|
print $symbolprefix, $objs, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
# }
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ARGV[0] eq "objcopy"){
|
||||||
|
|
||||||
|
@underscore_objs = (@underscore_objs, @misc_common_objs);
|
||||||
|
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
||||||
|
|
||||||
|
foreach $objs (@underscore_objs) {
|
||||||
|
print $objs, $bu, " ", $symbolprefix, $objs, $bu, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach $objs (@need_2underscore_objs) {
|
||||||
|
print $objs, $bu, $bu, " ", $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
# if ($ARGV[4] == 0) {
|
||||||
|
foreach $objs (@no_underscore_objs) {
|
||||||
|
print $objs, " ", $symbolprefix, $objs, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
# }
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ARGV[0] eq "objconv"){
|
||||||
|
|
||||||
|
@underscore_objs = (@underscore_objs, @misc_common_objs);
|
||||||
|
@no_underscore_objs = (@no_underscore_objs, @misc_common_objs);
|
||||||
|
|
||||||
|
foreach $objs (@underscore_objs) {
|
||||||
|
print "-nr:_", $objs, $bu, ":_", $symbolprefix, $objs, $bu, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach $objs (@need_2underscore_objs) {
|
||||||
|
print "-nr:_", $objs, $bu, $bu, ":_", $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
# if ($ARGV[4] == 0) {
|
||||||
|
foreach $objs (@no_underscore_objs) {
|
||||||
|
print "-nr:_", $objs, ":_", $symbolprefix, $objs, $symbolsuffix, "\n";
|
||||||
}
|
}
|
||||||
# }
|
# }
|
||||||
exit(0);
|
exit(0);
|
||||||
|
@ -2835,22 +2881,22 @@ if ($ARGV[0] eq "win2k"){
|
||||||
foreach $objs (@underscore_objs) {
|
foreach $objs (@underscore_objs) {
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t$objs=$objs","_ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, $symbolsuffix, "=$objs","_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t",$objs, "_=$objs","_ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, "_", $symbolsuffix, "=$objs","_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase=$objs", "_ \@", $count, "\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, "=$objs", "_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach $objs (@need_2underscore_objs) {
|
foreach $objs (@need_2underscore_objs) {
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t$objs=$objs","__ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, $symbolsuffix, "=$objs","__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t",$objs, "__=$objs","__ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, "__", $symbolsuffix, "=$objs","__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase=$objs", "__ \@", $count, "\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, "=$objs", "__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2859,15 +2905,15 @@ if ($ARGV[0] eq "win2k"){
|
||||||
|
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t",$objs, "_=$objs","_ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, "_", $symbolsuffix, "=$objs","_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase=$objs", "_ \@", $count, "\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, "=$objs", "_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
foreach $objs (@no_underscore_objs) {
|
foreach $objs (@no_underscore_objs) {
|
||||||
print "\t",$objs,"=$objs"," \@", $count, "\n";
|
print "\t",$symbolprefix,$objs,$symbolsuffix,"=$objs"," \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2880,11 +2926,11 @@ if ($ARGV[0] eq "win2khpl"){
|
||||||
foreach $objs (@hplobjs) {
|
foreach $objs (@hplobjs) {
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t$objs=$objs","_ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, $symbolsuffix, "=$objs","_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t",$objs, "_=$objs","_ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, "_", $symbolsuffix, "=$objs","_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase=$objs", "_ \@", $count, "\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, "=$objs", "_ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2905,24 +2951,24 @@ if ($ARGV[0] eq "microsoft"){
|
||||||
foreach $objs (@underscore_objs) {
|
foreach $objs (@underscore_objs) {
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t$objs = $objs","_\n";
|
print "\t",$symbolprefix, $objs, $symbolsuffix, " = $objs","_\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$objs\_ = $objs","_\n";
|
print "\t",$symbolprefix, $objs, "\_", $symbolsuffix, " = $objs","_\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase = $objs","_\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, " = $objs","_\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase\_ = $objs","_\n";
|
print "\t",$symbolprefix, $uppercase, "\_", $symbolsuffix, " = $objs","_\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach $objs (@need_2underscore_objs) {
|
foreach $objs (@need_2underscore_objs) {
|
||||||
$uppercase = $objs;
|
$uppercase = $objs;
|
||||||
$uppercase =~ tr/[a-z]/[A-Z]/;
|
$uppercase =~ tr/[a-z]/[A-Z]/;
|
||||||
print "\t$objs=$objs","__ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, $symbolsuffix, "=$objs","__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t",$objs, "__=$objs","__ \@", $count, "\n";
|
print "\t",$symbolprefix, $objs, "__", $symbolsuffix, "=$objs","__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
print "\t$uppercase=$objs", "__ \@", $count, "\n";
|
print "\t",$symbolprefix, $uppercase, $symbolsuffix, "=$objs", "__ \@", $count, "\n";
|
||||||
$count ++;
|
$count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2936,16 +2982,16 @@ if ($ARGV[0] eq "linktest"){
|
||||||
|
|
||||||
print "int main(void){\n";
|
print "int main(void){\n";
|
||||||
foreach $objs (@underscore_objs) {
|
foreach $objs (@underscore_objs) {
|
||||||
print $objs, $bu, "();\n" if $objs ne "xerbla";
|
print $symbolprefix, $objs, $bu, $symbolsuffix, "();\n" if $objs ne "xerbla";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach $objs (@need_2underscore_objs) {
|
foreach $objs (@need_2underscore_objs) {
|
||||||
print $objs, $bu, $bu, "();\n";
|
print $symbolprefix, $objs, $bu, $bu, $symbolsuffix, "();\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
# if ($ARGV[4] == 0) {
|
# if ($ARGV[4] == 0) {
|
||||||
foreach $objs (@no_underscore_objs) {
|
foreach $objs (@no_underscore_objs) {
|
||||||
print $objs, "();\n";
|
print $symbolprefix, $objs, $symbolsuffix, "();\n";
|
||||||
}
|
}
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue