/[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 542 by senoner, Sun May 15 15:31:45 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 133  Line 136 
136                                  qsampler, libgig and liblscp. linuxsampler is the core of the sampler, it includes the                                  qsampler, libgig and liblscp. linuxsampler is the core of the sampler, it includes the
137                                  sampler engines and audio and MIDI drivers. linuxsampler itself is decoupled from any                                  sampler engines and audio and MIDI drivers. linuxsampler itself is decoupled from any
138                                  user interface. It offers a network server (LSCP server) to allow to be controlled by                                  user interface. It offers a network server (LSCP server) to allow to be controlled by
139                                  an arbitrary user frontend from an arbitrary place over a netwrok connection or                                  an arbitrary user frontend from an arbitrary place over a network connection or
140                                  locally from the same machine as well.                                  locally from the same machine as well.
141                                  qsampler is the first GUI frontend written for linuxsampler, it is written with the Qt                                  qsampler is the first GUI frontend written for linuxsampler, it is written with the Qt
142                                  GUI library and thus can be compiled for various architectures and operating systems                                  GUI library and thus can be compiled for various architectures and operating systems
# Line 149  Line 152 
152    
153                          <h3>What do I need to compile and install?</h3>                          <h3>What do I need to compile and install?</h3>
154                          <p class="default">                          <p class="default">
155                                  You should compile and install at least linuxsampler. As a beginner you should                                  You should compile and install at least libgig and linuxsampler. As a beginner you should
156                                  defintely as well compile and install qsampler, liblscp and libgig. qsampler is a                                  definitely as well compile and install liblscp and qsampler. qsampler is a
157                                  convenient GUI frontend for linuxsampler. qsampler depends on liblscp, so you have to                                  convenient GUI frontend for linuxsampler. qsampler depends on liblscp, so you have to
158                                  compile and install liblscp before starting to build qsampler. It is recommended to                                  compile and install liblscp before starting to build qsampler. The recommended order to
159                                  install libgig as well, you don't have to actually because libgig is at the moment                                  compile and install is:
160                                  statically included with linuxsampler, but qsampler <b>can</b> use it to retrieve                                  <ol class="default">
161                                  additional informations from Gigasampler files.                                    <li>libgig</li>
162                                      <li>linuxsampler</li>
163                                      <li>liblscp</li>
164                                      <li>qsampler</li>
165                                    </ol>
166                            </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>                          </p>
201    
202                          <h3>How do I checkout from CVS?</h3>                          <h3>How do I checkout from CVS?</h3>
# Line 167  Line 208 
208                          <h3>How do I compile from CVS?</h3>                          <h3>How do I compile from CVS?</h3>
209                          <p class="default">                          <p class="default">
210                                  The procedure for compiling from CVS is the same for all subprojects, that is no matter                                  The procedure for compiling from CVS is the same for all subprojects, that is no matter
211                                  if you are compiling linuxsampler, qsampler, libgig or liblscp from CVS, you have to                                  if you are compiling linuxsampler, qsampler, libgig or liblscp from CVS, you need to
212                                  have the autotools (automake, autoconf and libtool) installed and compile it that way:                                  have the autotools (automake, autoconf and libtool) installed and compile it that way:
213                          </p>                          </p>
214                          <table class="default" border="0" cellpadding="1" cellspacing="5">                          <table class="default" border="0" cellpadding="1" cellspacing="5">

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

  ViewVC Help
Powered by ViewVC