Skip to content

Instantly share code, notes, and snippets.

@tkoki
Created October 28, 2014 05:53
Show Gist options
  • Save tkoki/783cd534afb0c24daadb to your computer and use it in GitHub Desktop.
Save tkoki/783cd534afb0c24daadb to your computer and use it in GitHub Desktop.
Objective-Cをコマンドラインでさくっとコンパイル
#import <Foundation/Foundation.h>
int main(int argc, char **argv) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
/*
Objective-Cのコード。
*/
[pool drain];
return 0;
}
/*
このファイルをtest.mとして保存して、
% gcc -o test -framework Foundation test.m
で出来る
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment