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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Kulakov <kulakov.ilya@gmail.com>2013-02-24 17:26:48 +0400
committerIlya Kulakov <kulakov.ilya@gmail.com>2013-03-09 12:57:16 +0400
commitaedf87e1b505accd07eba05453711290b49f1644 (patch)
treecf1e61f7769b861194e473a08d180df3decdf3b2 /README.md
parent6a58d9267fbb966ec2060947da1c753673656d12 (diff)
Ensure only SSE2 instructions are used.
Cura is supposed to work on at least 32bit CPU on 10.6 Such CPUs support only SSE2.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index b314169100..c65237dd67 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,8 @@ Assuming you have virtualenv at *~/.virtualenvs/Cura/* and [wxPython sources](ht
1. `cd` into *~/Downloads/wxPython-src-2.9.4.0/* and configure the sources:
./configure \
+ CFLAGS='-msse2 -mno-sse3 -mno-sse4' \
+ CXXFLAGS='-msse2 -mno-sse3 -mno-sse4' \
--disable-debug \
--enable-clipboard \
--enable-display \