--- web/trunk/www.linuxsampler.org/faq.html 2005/06/08 15:57:03 616 +++ web/trunk/www.linuxsampler.org/faq.html 2005/06/08 21:12:59 618 @@ -165,7 +165,35 @@

Compilation of LinuxSampler aborts with ...

"can't find a register in class `GENERAL_REGS' while reloading `asm'"
- This is caused by the inline assembly code for SIMD optimization. You currently have to compile LinuxSampler with -O2 or -O3 to avoid this problem. Usually this done by default. + This is caused by the inline assembly code for SIMD optimization. You currently have to compile LinuxSampler with -O2 or -O3 to avoid this problem. Usually this done by default, if not try: +

+ + + + + +
1
+2
+
+
CXXFLAGS="-O3" ./configure
+make
+
+

+ Alternatively you could also disable all hand-crafted assembly optimization code by: +

+ + + + + +
1
+2
+
+
./configure --disable-asm
+make
+
+

+ but the latter is definitely not recommended!

How do I checkout from CVS?