We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ace0fd commit 9268314Copy full SHA for 9268314
exports/gensymbol
@@ -3411,13 +3411,17 @@
3411
);
3412
3413
3414
+use File::Spec;
3415
+use File::Basename;
3416
+my $dirname = File::Spec->catfile(dirname(dirname(File::Spec->rel2abs(__FILE__))), "lapack-netlib");
3417
+
3418
if ($ARGV[8] == 1) {
3419
#ONLY_CBLAS=1
3420
@underscore_objs = (@misc_underscore_objs);
3421
} elsif ($ARGV[5] == 1) {
3422
#NO_LAPACK=1
3423
@underscore_objs = (@blasobjs, @misc_underscore_objs);
-} elsif (-d "../lapack-netlib") {
3424
+} elsif (-d $dirname) {
3425
if ($ARGV[7] == 0) {
3426
# NEED2UNDERSCORES=0
3427
# Don't need 2 underscores
0 commit comments