In the old days I could have compiled objective-c .m files with
$ gcc -fobjc-gc-only -framework Foundation sample.m
$ ./a.out
But now it doesn't work because there is a high chance the program has
@autoreleasepool { ... }
clause. How do I compile an objective-C on command-line now?