|
From: Nicola P. <nic...@gm...> - 2017-09-13 14:28:01
|
Hi,
I'mencountering errors trying to compile linuxsampler and related
libraries under Debian Stretch.
I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage
-rfakeroot -b).
Libgig does not compile, saying:
> dpkg-gencontrol: error: Depends field of package libgig-dev: obsolete
> substitution variable ${Source-Version}
> dh_gencontrol: dpkg-gencontrol -plibgig-dev -ldebian/changelog
> -Tdebian/libgig-dev.substvars -Pdebian/libgig-dev returned exit code 255
> debian/rules:76: recipe for target 'binary-arch' failed
> make: *** [binary-arch] Error 2
> dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
> status 2
Liblscp:
> debian/rules:45: recipe for target 'clean' failed
> make: *** [clean] Error 25
> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit
> status 2
I can't say if linuxsampler, qsampler and gigedit would compile, because
of unmet depenencies.
Can you give me a hint? Thanks!
--
Nicola
|
|
From: Christian S. <sch...@li...> - 2017-09-14 15:21:35
|
On Wednesday, September 13, 2017 16:27:47 Nicola Pandini wrote:
> Hi,
>
> I'mencountering errors trying to compile linuxsampler and related
> libraries under Debian Stretch.
> I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage
> -rfakeroot -b).
You are too fast for me. I haven't upgraded to Debian 9 yet.
> Libgig does not compile, saying:
> > dpkg-gencontrol: error: Depends field of package libgig-dev: obsolete
> > substitution variable ${Source-Version}
> > dh_gencontrol: dpkg-gencontrol -plibgig-dev -ldebian/changelog
> > -Tdebian/libgig-dev.substvars -Pdebian/libgig-dev returned exit code 255
> > debian/rules:76: recipe for target 'binary-arch' failed
> > make: *** [binary-arch] Error 2
> > dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
> > status 2
>
> Liblscp:
> > debian/rules:45: recipe for target 'clean' failed
> > make: *** [clean] Error 25
> > dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit
> > status 2
>
> I can't say if linuxsampler, qsampler and gigedit would compile, because
> of unmet depenencies.
> Can you give me a hint? Thanks!
>From the snippets you posted its hard to tell what's wrong. The actual errors
are certainly earlier.
However if the Debian packaging script complains about unmet build
dependencies, then it should also output which build dependencies are not met.
Like with all major Debian releases the respective Debian packages required to
be installed prior to compiling the LS packages might have slightly been
renamed.
CU
Christian
|
|
From: Nicola P. <nic...@gm...> - 2017-09-15 08:23:52
Attachments:
1-libgig.log
4-liblscp.log
|
Il 14/09/2017 16:51, Christian Schoenebeck ha scritto:
> On Wednesday, September 13, 2017 16:27:47 Nicola Pandini wrote:
>> Hi,
>>
>> I'mencountering errors trying to compile linuxsampler and related
>> libraries under Debian Stretch.
>> I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage
>> -rfakeroot -b).
> You are too fast for me. I haven't upgraded to Debian 9 yet.
:-) I'm just testing. I will use a fresh Debian Stretch installation, so
I'm checking if all my vital software will work.
>
>> Libgig does not compile, saying:
>>> dpkg-gencontrol: error: Depends field of package libgig-dev: obsolete
>>> substitution variable ${Source-Version}
>>> dh_gencontrol: dpkg-gencontrol -plibgig-dev -ldebian/changelog
>>> -Tdebian/libgig-dev.substvars -Pdebian/libgig-dev returned exit code 255
>>> debian/rules:76: recipe for target 'binary-arch' failed
>>> make: *** [binary-arch] Error 2
>>> dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
>>> status 2
>> Liblscp:
>>> debian/rules:45: recipe for target 'clean' failed
>>> make: *** [clean] Error 25
>>> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit
>>> status 2
>> I can't say if linuxsampler, qsampler and gigedit would compile, because
>> of unmet depenencies.
>> Can you give me a hint? Thanks!
> From the snippets you posted its hard to tell what's wrong. The actual errors
> are certainly earlier.
I've attached the full compilation logs of both libgig and liblscp.
>
> However if the Debian packaging script complains about unmet build
> dependencies, then it should also output which build dependencies are not met.
> Like with all major Debian releases the respective Debian packages required to
> be installed prior to compiling the LS packages might have slightly been
> renamed.
Before I started compiling, I did an apt-get build-dep of all the
linuxsampler's libraries, in order to install all the dependencies.
I don't know if linuxsampler and liblinuxsampler will compile simply
because it asks for libgig to be installed :-)
--
Nicola
|
|
From: Nicola P. <nic...@gm...> - 2017-09-19 14:58:47
|
Hi,
I'm trying to compile linuxsampler & co. with the classic ./configure +
make + sudo make install combination.
I never do that (with linuxsampler), so I ask you if I'm doing right:
# libgig
make -f Makefile.svn $*
CXXFLAGS="-O3 -msse -march=core2 -mfpmath=sse -ffast-math
-fomit-frame-pointer -funroll-loops" ./configure --prefix=/usr
--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
make
sudo make install
# linuxsampler
make -f Makefile.svn $*
CXXFLAGS="-O3 -msse -march=core2 -mfpmath=sse -ffast-math
-fomit-frame-pointer -funroll-loops" ./configure --prefix=/usr
--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
make
sudo make install
# liblscp
make -f Makefile.git $*
CXXFLAGS="-O3 -msse -march=core2 -mfpmath=sse -ffast-math
-fomit-frame-pointer -funroll-loops" ./configure --prefix=/usr
--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
make
sudo make install
Is it right? "make -f Makefile.svn $*" Is the right method to generate
.config file?
thanks
Il 15/09/2017 10:23, Nicola Pandini ha scritto:
> Il 14/09/2017 16:51, Christian Schoenebeck ha scritto:
>> On Wednesday, September 13, 2017 16:27:47 Nicola Pandini wrote:
>>> Hi,
>>>
>>> I'mencountering errors trying to compile linuxsampler and related
>>> libraries under Debian Stretch.
>>> I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage
>>> -rfakeroot -b).
>> You are too fast for me. I haven't upgraded to Debian 9 yet.
> :-) I'm just testing. I will use a fresh Debian Stretch installation,
> so I'm checking if all my vital software will work.
>
>
>>> Libgig does not compile, saying:
>>>> dpkg-gencontrol: error: Depends field of package libgig-dev: obsolete
>>>> substitution variable ${Source-Version}
>>>> dh_gencontrol: dpkg-gencontrol -plibgig-dev -ldebian/changelog
>>>> -Tdebian/libgig-dev.substvars -Pdebian/libgig-dev returned exit code 255
>>>> debian/rules:76: recipe for target 'binary-arch' failed
>>>> make: *** [binary-arch] Error 2
>>>> dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit
>>>> status 2
>>> Liblscp:
>>>> debian/rules:45: recipe for target 'clean' failed
>>>> make: *** [clean] Error 25
>>>> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit
>>>> status 2
>>> I can't say if linuxsampler, qsampler and gigedit would compile, because
>>> of unmet depenencies.
>>> Can you give me a hint? Thanks!
>> From the snippets you posted its hard to tell what's wrong. The actual errors
>> are certainly earlier.
> I've attached the full compilation logs of both libgig and liblscp.
>
>
>> However if the Debian packaging script complains about unmet build
>> dependencies, then it should also output which build dependencies are not met.
>> Like with all major Debian releases the respective Debian packages required to
>> be installed prior to compiling the LS packages might have slightly been
>> renamed.
>
> Before I started compiling, I did an apt-get build-dep of all the
> linuxsampler's libraries, in order to install all the dependencies.
> I don't know if linuxsampler and liblinuxsampler will compile simply
> because it asks for libgig to be installed :-)
>
>
>
> --
> Nicola
--
Nicola
|
|
From: Christian S. <sch...@li...> - 2017-10-07 18:18:29
|
On Thursday, September 14, 2017 4:51:29 PM CEST Christian Schoenebeck wrote: > On Wednesday, September 13, 2017 16:27:47 Nicola Pandini wrote: > > Hi, > > > > I'mencountering errors trying to compile linuxsampler and related > > libraries under Debian Stretch. > > I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage > > -rfakeroot -b). > > You are too fast for me. I haven't upgraded to Debian 9 yet. I just committed some fixes for Debian 9 "Stretch". All debs build flawlessly on Debian 9 now. CU Christian |
|
From: Nicola P. <nic...@gm...> - 2017-10-09 11:25:51
Attachments:
2-linuxsampler.log
|
Il 07/10/2017 20:18, Christian Schoenebeck ha scritto: > On Thursday, September 14, 2017 4:51:29 PM CEST Christian Schoenebeck wrote: >> On Wednesday, September 13, 2017 16:27:47 Nicola Pandini wrote: >>> Hi, >>> >>> I'mencountering errors trying to compile linuxsampler and related >>> libraries under Debian Stretch. >>> I've followed the "LinuxSampler for Debian" guide (dpkg-buildpackage >>> -rfakeroot -b). >> You are too fast for me. I haven't upgraded to Debian 9 yet. > I just committed some fixes for Debian 9 "Stretch". All debs build flawlessly on > Debian 9 now. Thank you Christian! I successfully compiled libgig, but I'm still having issues compiling linuxsampler. I attached the log of my last attempt with rev 3353. -- Nicola |
|
From: Christian S. <sch...@li...> - 2017-10-12 14:53:32
|
On Montag, 9. Oktober 2017 13:25:25 CEST Nicola Pandini wrote: > Thank you Christian! > I successfully compiled libgig, but I'm still having issues compiling > linuxsampler. I attached the log of my last attempt with rev 3353. Fixed (SVN r3354). CU Christian |
|
From: Nicola P. <nic...@gm...> - 2017-10-13 14:24:49
|
Il 12/10/2017 16:53, Christian Schoenebeck ha scritto: > On Montag, 9. Oktober 2017 13:25:25 CEST Nicola Pandini wrote: >> Thank you Christian! >> I successfully compiled libgig, but I'm still having issues compiling >> linuxsampler. I attached the log of my last attempt with rev 3353. > Fixed (SVN r3354). All apps and libs compiled flawlessy now, kudos to you, Christian :-) -- Nicola |