Hey there,
In order to compile miXed for OSX I needed to add a symlink from gcc2 to gcc-3.3 since gcc2 does not exist.
Also the cd doc/src; $(MAKE) part for "make all" fails with:
/bin/sh: line 1: cd: doc/src: No such file or directory cd doc/src; make
indeed there is no such "doc" folder anywhere in the miXed.
Then I get:
make[42]: vfork: Resource temporarily unavailable make[42]: ../Makefile.common:5: fork: Resource temporarily unavailable make[42]: ../Makefile.common:6: fork: Resource temporarily unavailable make[42]: ../Makefile.common:19: fork: Resource temporarily unavailable
and then make fails, the binaries all seem to be well built and load in PD fine though.
just letting you all know.
Ben
Hallo, ben@ekran.org hat gesagt: // ben@ekran.org wrote:
In order to compile miXed for OSX I needed to add a symlink from gcc2 to gcc-3.3 since gcc2 does not exist.
It's better to change the Makefile.common and just uncomment the line overwriting CC like: # CC = gcc2
Then the default $(CC) compiler is used which normally just is cc or gcc.
ciao