Google-code-prettify

2013/12/16

Objective-Cソースのコンパイル

以下のソースtest.mをコンパイルする。
#import <Foundation/Foundation.h>

int main(int argc, char **argv)
{
        @autoreleasepool{
                NSDate *date = [[NSDate alloc] init];

                NSLog(@"%@", date);
        }

        return 0;
}

以下を実行する。
$ clang -Wall -fobjc-arc -o test test.m -framework Foundation

0 件のコメント: