On Fri, May 07, 2004 at 03:11:54PM -0600, Luke Palmer wrote: > Nicholas Clark writes: > > Thanks. Everything compiles again now, and all tests pass > > (after I do the little .so -> .dylib dance) > > I'm new to OS X. Might you describe said dance?
We haven't resolved how to best patch the Makefile template to take account of shared libraries not called libnci.so or libnic.dll Hence currently make fails: make: *** No rule to make target `runtime/parrot/dynext/libnci.dylib', needed by `all'. Stop. and the little dance is: make runtime/parrot/dynext/libnci.so && mv runtime/parrot/dynext/libnci.so runtime/parrot/dynext/libnci.dylib That's all. I don't have a Windows box, so can't make a patch which is proven to work on both platforms. Nicholas Clark