/[svn]/web/trunk/www.linuxsampler.org/faq.html
ViewVC logotype

Diff of /web/trunk/www.linuxsampler.org/faq.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 806 by schoenebeck, Wed Jul 20 10:33:22 2005 UTC revision 807 by schoenebeck, Mon Nov 21 14:25:10 2005 UTC
# Line 198  make</pre> Line 198  make</pre>
198                                  </tr>                                  </tr>
199                          </table>                          </table>
200                          <p class="default">                          <p class="default">
201                                  but the latter is definitely not recommended!                                  but the latter is definitely not recommended, as it will increase CPU usage a lot!
202                          </p>                          </p>
203                            <p class="default">
204                                    "<code>../common/Resampler.h:142: error: memory input 2 is not directly addressable</code>"<br>
205                                    This was reported (<a href="http://sourceforge.net/mailarchive/forum.php?thread_id=9018347&forum_id=12792">1</a>,
206                                    <a href="http://sourceforge.net/mailarchive/forum.php?thread_id=9019467&forum_id=12792">2</a>)
207                                    to be a gcc/g++ version problem. Make sure you got gcc and g++,
208                                    both of version 3.3 or higher installed. You can check this with:
209                            </p>
210                            <table class="default" border="0" cellpadding="1" cellspacing="5">
211                                    <tr>
212                                      <td><pre class="code">1
213    2</pre>
214                                      </td>
215                                      <td width="100%">
216                                        <pre class="code">gcc --version
217    g++ --version</pre>
218                                      </td>
219                                    </tr>
220                            </table>
221                            <p class="default">
222                                    In case you already got gcc and g++ of version 3.3 or higher
223                                    installed and it still causes the compilation error mentioned
224                                    above, try the following:
225                            </p>
226                            <table class="default" border="0" cellpadding="1" cellspacing="5">
227                                    <tr>
228                                      <td><pre class="code">1
229    2</pre>
230                                      </td>
231                                      <td width="100%">
232                                        <pre class="code">export CC=`which gcc`
233    export CXX=`which g++`</pre>
234                                      </td>
235                                    </tr>
236                            </table>
237    
238                          <h3>How do I checkout from CVS?</h3>                          <h3>How do I checkout from CVS?</h3>
239                          <p class="default">                          <p class="default">

Legend:
Removed from v.806  
changed lines
  Added in v.807

  ViewVC Help
Powered by ViewVC