소스 검색

Turn off the useless personality crap

Eric Andersen 24 년 전
부모
커밋
822a5d2922
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      libc/sysdeps/linux/i386/crt0.S

+ 2 - 0
libc/sysdeps/linux/i386/crt0.S

@@ -67,10 +67,12 @@ _start:
 	pushl %ebx       /* Argument pointer */
 	pushl %ecx      /* And the argument count */
 
+#if 0
 	/* Make sure we are not using iBCS2 personality. (i.e. force linux).  */
 	movl $136,%eax
 	sub %ebx,%ebx
 	int $0x80
+#endif
 
 	/* Ok, now run uClibc's main() -- shouldn't return */
 	call __uClibc_main