Hmm, actually it seems that the link command in
embedded/faustremote/RemoteClient/Makefile is bogus. Before I started
messing with it, it was:
libfaustremote.a : $(objects)
libtool -static $(LIBFLAGS) $(objects) -o libfaustremote.a
I simply removed the -static option which isn't recognized on Linux, but
this doesn't work either (libfaustremote.a ends up being empty). I guess
that this works with the libtool command on the Mac, but not on Linux, so
I'm going to change it to:
ifeq ($(system), Darwin)
libfaustremote.a : $(objects)
libtool -static $(LIBFLAGS) $(objects) -o libfaustremote.a
else
libfaustremote.a : $(objects)
rm -f $@
ar cq $@ $(objects)
ranlib $@
endif
Please hold on while I clean up this mess...
On Tue, Jun 3, 2014 at 12:39 PM, Albert Graef <aggr...@gmail.com> wrote:
> On Tue, Jun 3, 2014 at 12:15 PM, Stéphane Letz <l...@grame.fr> wrote:
>
>> Please do!
>>
>
> Done. I've pushed this to the faust2 branch, maybe some kind soul can pull
> it over to the main branch?
>
> --
> Dr. Albert Gr"af
> Computer Music Research Group, JGU Mainz, Germany
> Email: aggr...@gmail.com
> WWW: https://plus.google.com/+AlbertGraef
>
--
Dr. Albert Gr"af
Computer Music Research Group, JGU Mainz, Germany
Email: aggr...@gmail.com
WWW: https://plus.google.com/+AlbertGraef
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
_______________________________________________
Faudiostream-devel mailing list
Faudiostream-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-devel