--- web/trunk/www.linuxsampler.org/faq.html 2005/07/20 10:33:22 703 +++ web/trunk/www.linuxsampler.org/faq.html 2005/11/21 14:25:10 807 @@ -198,8 +198,42 @@

- but the latter is definitely not recommended! + but the latter is definitely not recommended, as it will increase CPU usage a lot!

+

+ "../common/Resampler.h:142: error: memory input 2 is not directly addressable"
+ This was reported (1, + 2) + to be a gcc/g++ version problem. Make sure you got gcc and g++, + both of version 3.3 or higher installed. You can check this with: +

+ + + + + +
1
+2
+
+
gcc --version
+g++ --version
+
+

+ In case you already got gcc and g++ of version 3.3 or higher + installed and it still causes the compilation error mentioned + above, try the following: +

+ + + + + +
1
+2
+
+
export CC=`which gcc`
+export CXX=`which g++`
+

How do I checkout from CVS?