매 달의 보관소: 10월 2012

C++ Dynamic library (Mac OS X)

동적 라이브러리가 로드될 때 언로드 될 때 스스로 초기화 해야 할 필요가 있을 때 다음과 같이 작성한다. __attribute__((constructor)) static void initializer1() { printf(“[%s] [%s]\n”, FILE, FUNCTION); } __attribute__((destructor)) static void finalizer1() { printf(“[%s] [%s]\n”, FILE, FUNCTION); } 여러 개의 constructor나

도큐멘트 에 올린 글

Amazing features in Xcode 4.4(LLVM Compiler 4.0)

Amazing features in Xcode 4.4(LLVM Compiler 4.0)   Xcode가 4.4로 업데이트 되면서 LLVM Compiler도 4.0으로 업데이트 되었다.   여기에 재밌는 기능이 추가 되었다.   1. Objective-C @synthesize command is generated by default when using properties. 2. Objective-C adds literal syntax

도큐멘트 에 올린 글