Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- release
- LLVM
- Xcode
- Debug
- landscape
- NSHomeDirectory
- scale
- xib
- UIView
- .svn
- /var/mobile/Applications
- 태그를 입력해 주세요.
- storyboard
- Default-568h.png
- Undefined symbols for architecture armv7s
- box2d
- cocos2d-x
- SBTarget
- CCLOG
- Derived Data
- 멀티태스킹
- ccbi
Archives
- Today
- Total
목록프로그래밍/디버깅 (4)
standwally
맥에서 .svn 디렉토리 삭제
가끔 맥에서 .svn 또는 .git 디렉토리를 삭제해야될 때가 있다.터미널에서 아래 명령어를 사용하여 하위디렉토리에 있는것까지 전부 삭제할 수 있다.$ find . -name .svn -print0 | xargs -0 rm -rf
프로그래밍/디버깅
2013. 3. 28. 17:28
Unhandled exception 0xC0000005: Acccess Violation
포인터 변수 선언후 포인터 변수에 배열을 할당해줄때 프로그램에서 요구하는 메모리의 크기와 그에 따른 각각의 인덱스 길이와의 비교를 확실히 해줄것
프로그래밍/디버깅
2009. 9. 24. 10:27
typedef void *POINTER_64 PVOID64 에러
typedef void *POINTER_64 PVOID64; // 주석처리 // 밑에 두줄 추가 typedef void *POINTER_64; typedef POINTER_64 PVOID64;
프로그래밍/디버깅
2009. 3. 25. 20:58
연산자 오버로딩 문제
directShow base class를 vs2008에서 컴파일시 에러 메세지 Error 1 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int BaseClasses\ctlutil.h 278 BaseClasses operator=(LONG); → (LONG) operator=(LONG); 추가적인 에러 해결방안은 아래 링크로 http://blogs.msdn.com/mikewasson/archive/2005/05/23/some-directshow-samples-break-in-visual-studio-2005.aspx
프로그래밍/디버깅
2009. 3. 25. 20:14