소스 검색

added 64 bits detection with __LP64__ (osx/ios)

ncannasse 8 년 전
부모
커밋
37899d388a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/hl.h

+ 1 - 1
src/hl.h

@@ -45,7 +45,7 @@
 #	define HL_BSD
 #endif
 
-#if defined(_64BITS) || defined(__x86_64__) || defined(_M_X64)
+#if defined(_64BITS) || defined(__x86_64__) || defined(_M_X64) || defined(__LP64__)
 #	define HL_64
 #endif