Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-03-07 16:31:08 +0300
committerbubnikv <bubnikv@gmail.com>2017-03-07 16:31:08 +0300
commita4dea4b7fc1b7638fed4f8b70392f2f1c01ba809 (patch)
tree46b1a75976513d4f18cc8dee4a7d2ff23c12670a /xs
parent32ebb1e2c72c0612746283ad5969dae93dc57e5a (diff)
Fix of intel TBB linking.
Diffstat (limited to 'xs')
-rw-r--r--xs/Build.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/Build.PL b/xs/Build.PL
index b77417ee7..5d44ba887 100644
--- a/xs/Build.PL
+++ b/xs/Build.PL
@@ -271,7 +271,7 @@ if ($have_tbb) {
}
push @INC, (map " -I$_", @tbb_include); # TODO: only use the one related to the chosen lib path
if ($ENV{SLIC3R_STATIC} || $cpp_guess->is_msvc) {
- push @LIBS, map "${path}/${_}_static${suffix}", @tbb_libraries;
+ push @LIBS, map "${path}/${_}_static${lib_ext}", @tbb_libraries;
} else {
push @LIBS, " -L$path", (map " -l$_$suffix", @tbb_libraries);
}