On Friday, May 12, 2017 11:59:57 Andrew C wrote:
> Thanks, Christian, that works like a charm. Libgig compiled successfully.
> 
> Getting a makefile/make related error now when trying to build Linuxsampler
> from SVN:
> 
[snip]
> make[3]: Entering directory
> '/home/ubuntu-studio/Desktop/Linuxsampler/linuxsampler/src/scriptvm'
> make[3]: *** No rule to make target 'parser.h', needed by 'all'.  Stop.

Make sure bison is installed on your machine, then try this:

        cd TOPLEVELDIROFLSSOURCES
        make parser
        make

If that does not do it, then make a clean rebuild instead:

        cd TOPLEVELDIROFLSSOURCES
        make -f Makefile.svn clean
        make -f Makefile.svn
        ./configure
        make

Since you are using a Debian flavored distro, you can of course also build 
.deb packages instead:

        cd TOPLEVELDIROFLSSOURCES
        dpkg-buildpackage -b

And then install the built .deb packages:

        dpkg -i REPLACE_BY_DEB_FILES

There is also a (fairly old) Debian howto:

        http://linuxsampler.org/debian.html

CU
Christian

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Linuxsampler-devel mailing list
Linuxsampler-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxsampler-devel

Reply via email to