Hi,
Which OS and Xcode versions do you use?
Thanks for pointing out the issues with case sensitive file systems, we'll look into them for the next release.
For the compilation issue with the slicing tests, I believe this only shows up with recent Xcode SDKs, to workaround the issue you can edit the Server.m and Client.m files of the tests which are failing to compile and replace:
Code:
#if defined(TARGET_OS_IPHONE)
With:
Code:
#if TARGET_OS_IPHONE
The GC errors only show up with Snow Leopard (which wasn't released at the time we released Ice Touch 1.0.0). See here for more information. These errors are harmless as the threads are still implicitly registered so you can ignore them. We already fixed this on our mainline and the fix will be available in the next Ice Touch release.
Cheers,
Benoit.