/[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 703 by schoenebeck, Wed Jul 20 10:33:22 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>Can I use LinuxSampler in commercial hardware or software products? </h3>
130                            <p class="default">
131                            You are NOT ALLOWED to use LinuxSampler source code, libraries or applications in
132                            COMMERCIAL hardware or software products without prior written authorization by the
133                            <a href="developers.html">authors</a>. <A HREF="downloads.html">See here</A>
134    
135                          <h3>linuxsampler? qsampler? libgig? liblscp? hu?</h3>                          <h3>linuxsampler? qsampler? libgig? liblscp? hu?</h3>
136                          <p class="default">                          <p class="default">
# Line 162  Line 167 
167                                  </ol>                                  </ol>
168                          </p>                          </p>
169    
170                            <h3>Compilation of LinuxSampler aborts with ... </h3>
171                            <p class="default">
172                                    "<code>can't find a register in class `GENERAL_REGS' while reloading `asm'</code>"<br>
173                                    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:
174                            </p>
175                            <table class="default" border="0" cellpadding="1" cellspacing="5">
176                                    <tr>
177                                      <td><pre class="code">1
178    2</pre>
179                                      </td>
180                                      <td width="100%">
181                                        <pre class="code">CXXFLAGS="-O3" ./configure
182    make</pre>
183                                      </td>
184                                    </tr>
185                            </table>
186                            <p class="default">
187                                    Alternatively you could also disable all hand-crafted assembly optimization code by:
188                            </p>
189                            <table class="default" border="0" cellpadding="1" cellspacing="5">
190                                    <tr>
191                                      <td><pre class="code">1
192    2</pre>
193                                      </td>
194                                      <td width="100%">
195                                        <pre class="code">./configure --disable-asm
196    make</pre>
197                                      </td>
198                                    </tr>
199                            </table>
200                            <p class="default">
201                                    but the latter is definitely not recommended!
202                            </p>
203    
204                          <h3>How do I checkout from CVS?</h3>                          <h3>How do I checkout from CVS?</h3>
205                          <p class="default">                          <p class="default">
206                                  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.703

  ViewVC Help
Powered by ViewVC