/[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 585 by schoenebeck, Wed May 25 04:39:32 2005 UTC revision 702 by senoner, Tue Jul 19 19:26:55 2005 UTC
# Line 126  Line 126 
126                                  Here is a collection of frequently asked questions. Please read them before asking on                                  Here is a collection of frequently asked questions. Please read them before asking on
127                                  the mailing list.                                  the mailing list.
128                          </p>                          </p>
129                            <h3>I want to use LinuxSampler code in commercial hardware or software products </h3>
130                            <p class="default">
131    You are NOT ALLOWED to use LinuxSampler code in COMMERCIAL hardware / software products without prior written authorization. <A HREF="downloads.html">See here</A>
132    
133                          <h3>linuxsampler? qsampler? libgig? liblscp? hu?</h3>                          <h3>linuxsampler? qsampler? libgig? liblscp? hu?</h3>
134                          <p class="default">                          <p class="default">
# Line 162  Line 165 
165                                  </ol>                                  </ol>
166                          </p>                          </p>
167    
168                            <h3>Compilation of LinuxSampler aborts with ... </h3>
169                            <p class="default">
170                                    "<code>can't find a register in class `GENERAL_REGS' while reloading `asm'</code>"<br>
171                                    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:
172                            </p>
173                            <table class="default" border="0" cellpadding="1" cellspacing="5">
174                                    <tr>
175                                      <td><pre class="code">1
176    2</pre>
177                                      </td>
178                                      <td width="100%">
179                                        <pre class="code">CXXFLAGS="-O3" ./configure
180    make</pre>
181                                      </td>
182                                    </tr>
183                            </table>
184                            <p class="default">
185                                    Alternatively you could also disable all hand-crafted assembly optimization code by:
186                            </p>
187                            <table class="default" border="0" cellpadding="1" cellspacing="5">
188                                    <tr>
189                                      <td><pre class="code">1
190    2</pre>
191                                      </td>
192                                      <td width="100%">
193                                        <pre class="code">./configure --disable-asm
194    make</pre>
195                                      </td>
196                                    </tr>
197                            </table>
198                            <p class="default">
199                                    but the latter is definitely not recommended!
200                            </p>
201    
202                          <h3>How do I checkout from CVS?</h3>                          <h3>How do I checkout from CVS?</h3>
203                          <p class="default">                          <p class="default">
204                                  The procedure of checking out the newest version from CVS is described on the                                  The procedure of checking out the newest version from CVS is described on the

Legend:
Removed from v.585  
changed lines
  Added in v.702

  ViewVC Help
Powered by ViewVC