Hello
Indeed the samples haven't been updated in a very long time, and some of them no longer build with the current iOS SDK.
Here's how to patch the HelloWorld one so that it builds.
Open make.cmd and on line 80 change:
% build.cmd
set IOS_LDFLAGS
%
to
% build.cmd
set IOS_LDFLAGS=-framework CoreFoundation -framework Foundation -framework UIKit
%
You'll also need to patch the Toolchain\extra\rdc.m file in the builder's install path. Add the following lines after the #include list:
% rdc.m
// forward declaration of the __cxa_demangle() libcxxabi facility
char *__cxa_demangle (const char *mangled_name, char *output_buffer, size_t *length, int *status);
%
Save and rebuild. This should fix the problem.
I'm going to review the supplied examples and make sure they all build. I haven't done this in a long time, I guess it's time.