Object C Windows 7에서 실행
카테고리 없음2017. 4. 10. 20:41
반응형
gnustep-devel-1.3.0-setup.exe
gnustep-msys-system-0.28.1-setup.exe
gnustep-core-0.28.0-setup.exe
프로그램 다운로드
sh.exe 실행
gcc -o asl hello.m -I /GNUstep/System/Library/Headers -L /GNUstep/System/Library/Libraries/ -lobjc -lgnustep-base -fconstant-string-class=NSConstantString
아래 파일 제작
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, World!");
[pool drain];
return 0;
}
반응형