Too slow to compile archive in xcode (IL2CPP)
오늘 하루종일 한 일이 배포용 버전 만드는 일이었다. ㅎㅎ
개발 버전으로 빌드 테스트 잘 되어서 외부 테스터들을 위해서
배포 버전을 만드는데 계속 archiving 에서 먹통..ㅠㅠ
30분을 기다려보고 재부팅하고 다시 한시간을 기다려봐도 깜깜 무소식이다.
활성 상태 보기로 체크 해보니
clang 이란 놈이 메모리 16G 중에 15G를 잡아 먹고 있었다.
이건 기다려서 해결될 일이 아니다. ㅎㅎㅎ
구글신의 도움으로
프로젝트 중에 Hashtable 쓰는 곳이 있으면 clang 컴파일러가
Hashtable가 사용된 코드를 미친듯이 풀어헤쳐 버리는 듯 한 것같다.
그래서 Unity에서 사용하는 구조체 중에 Hashtable 사용하는 구조는
폐기해버렸나 보다 (이제야 이해가 되는듯 ㅋㅋ)
WWW 클래스 에서 쿠키 값 저장하는데 Hashtable 폐기되고
Dictionary 구조체를 사용하게 바뀌어 있었는데
하여튼 지금 상으로 해결 방법은 Unity Project에서 사용되는 코드를 바꾸던가
아니면
Xcode setting 에서 optimization level 을 0으로 설정하면 된다.
어떤 날은 미친듯이 진도 나가는 날이 있지만,
어떤 날은 미친듯이 한 문제만 푸는 날도 있네.. ^^;
그래도 감사하게도 해결했으니 편히 잠을 자는구다.
참고한 링크
http://fogbugz.unity3d.com/default.asp?721062_n482bt9n4qm7ejgb
IOS IL2CPP Freeze in xCODE on default optimization level
There's nothing with my system that's the problem. I don't have any code to attach.
Basically, whenever we built our game for 64bit with IL2CPP - the xcode compiler froze and the clang process took up all memory. Only way we could build was with optimization level 0 in the xcode settings.
We found the issue in one of our DLL from a third party that we use. It contained auto-generated code with a Hashtable setting values in about 8000+ lines of code.
We changed all the Hashtables to Dictionaries and the xcode compiler started working again.
Anyway, just though I'd let you know in case there's anything you can do to fix issues like this on your side.
Public status: Public
License type: Free
오늘 하루종일 한 일이 배포용 버전 만드는 일이었다. ㅎㅎ
개발 버전으로 빌드 테스트 잘 되어서 외부 테스터들을 위해서
배포 버전을 만드는데 계속 archiving 에서 먹통..ㅠㅠ
30분을 기다려보고 재부팅하고 다시 한시간을 기다려봐도 깜깜 무소식이다.
활성 상태 보기로 체크 해보니
clang 이란 놈이 메모리 16G 중에 15G를 잡아 먹고 있었다.
이건 기다려서 해결될 일이 아니다. ㅎㅎㅎ
구글신의 도움으로
프로젝트 중에 Hashtable 쓰는 곳이 있으면 clang 컴파일러가
Hashtable가 사용된 코드를 미친듯이 풀어헤쳐 버리는 듯 한 것같다.
그래서 Unity에서 사용하는 구조체 중에 Hashtable 사용하는 구조는
폐기해버렸나 보다 (이제야 이해가 되는듯 ㅋㅋ)
WWW 클래스 에서 쿠키 값 저장하는데 Hashtable 폐기되고
Dictionary 구조체를 사용하게 바뀌어 있었는데
하여튼 지금 상으로 해결 방법은 Unity Project에서 사용되는 코드를 바꾸던가
아니면
Xcode setting 에서 optimization level 을 0으로 설정하면 된다.
어떤 날은 미친듯이 진도 나가는 날이 있지만,
어떤 날은 미친듯이 한 문제만 푸는 날도 있네.. ^^;
그래도 감사하게도 해결했으니 편히 잠을 자는구다.
참고한 링크
http://fogbugz.unity3d.com/default.asp?721062_n482bt9n4qm7ejgb
IOS IL2CPP Freeze in xCODE on default optimization level
There's nothing with my system that's the problem. I don't have any code to attach.
Basically, whenever we built our game for 64bit with IL2CPP - the xcode compiler froze and the clang process took up all memory. Only way we could build was with optimization level 0 in the xcode settings.
We found the issue in one of our DLL from a third party that we use. It contained auto-generated code with a Hashtable setting values in about 8000+ lines of code.
We changed all the Hashtables to Dictionaries and the xcode compiler started working again.
Anyway, just though I'd let you know in case there's anything you can do to fix issues like this on your side.
Public status: Public
License type: Free
댓글