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/doc
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-01-02 12:36:45 +0300
committerbubnikv <bubnikv@gmail.com>2018-01-02 12:36:45 +0300
commitc6bc55e4f9c7683ff1b414018dbe137bd7e21bcf (patch)
treefc8675d5ce86008a1002d48728e49eec02d863fd /doc
parent0de0e4ff4112fc953f2ebd080076e78619a10b31 (diff)
Added a comment on disabling ICU integration when compiling Boost on Linux.
Diffstat (limited to 'doc')
-rw-r--r--doc/How_to_build_Slic3r.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/How_to_build_Slic3r.txt b/doc/How_to_build_Slic3r.txt
index a1d112981..22e6f953e 100644
--- a/doc/How_to_build_Slic3r.txt
+++ b/doc/How_to_build_Slic3r.txt
@@ -311,5 +311,6 @@ One may save compilation time by compiling just what Slic3r needs.
./bootstrap.sh --with-libraries=system,filesystem,thread,log,locale,regex
The -fPIC flag is required on Linux to make the static libraries rellocatable,
so they could be embedded into a shared library.
-./bjam -a link=static variant=release threading=multi cxxflags=-fPIC cflags=-fPIC
+It is important to disable boost.locale.icu=off when compiling the static boost library.
+./bjam -a link=static variant=release threading=multi boost.locale.icu=off --with-locale cxxflags=-fPIC cflags=-fPIC
To install on Linux to /usr/local/..., run the line above with the additional install keyword and with sudo.