Hello,
Installing a new OSX environment, I built wxWidgets 2.8 (dylib), then SVN HEAD of CodeBlocks with :
ACLOCAL_FLAGS="-I /usr/local/share/aclocal" ./bootstrap
./configure --with-contrib-plugins=all,-FileManager,-NassiShneiderman,-spellchecker --enable-unicode CFLAGS="-arch i386" CXXFLAGS="-arch i386" CPPFLAGS="-arch i386" LDFLAGS="-arch i386" OBJCFLAGS="-arch i386" OBJCXXFLAGS="-arch i386"
make
sudo make install
Notice I had to remove all the "-Wl,--no-undefined" in "acinclude.m4" to pass a "C++ compiler cannot create executables" error.
Then, I made an app bundle, but launching it not any plugin is loaded. So, the fact is that I don't find the plugins's dylib. I have an old bundle in which I succeeded (in 2012), but I don't see any obvious difference about the script building it (have to study the stuff again).
Well, where are the dylibs ? That is the question :)
--
EDIT : I finally tried to go with the .so about plugins (even if in the C::B 13.12's bundle I well see a .dylib files) and I placed them in the path CodeBlocks is waiting for them as per the CodeBlocks log... But it remains the same : "0 loaded plugins". Does someone could explain me the good bundle tree to succeed ?