소스 검색

Add comment

Bo Yang 7 년 전
부모
커밋
836af41347
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      python/setup.py

+ 3 - 0
python/setup.py

@@ -186,6 +186,9 @@ if __name__ == '__main__':
         extra_compile_args.append('-Wno-invalid-offsetof')
         extra_compile_args.append('-Wno-sign-compare')
 
+    # https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes
+    # C++ projects must now migrate to libc++ and are recommended to set a
+    # deployment target of macOS 10.9 or later, or iOS 7 or later.
     if sys.platform == 'darwin':
       os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.9'