what does macosx-version-min imply?

前端 未结 4 646
一整个雨季
一整个雨季 2020-12-08 10:05

When I pass compiler flag -mmacosx-version-min=10.5, what does it mean? I think it implies the result binary is x86, not ppc, but is it 32 bits or 64 bits? I\'m

4条回答
  •  感情败类
    2020-12-08 10:38

    -mmacosx-version-min=... also influences the default choice of C++ STL implementation (GNU or LLVM), and in this regard, it is equally important for the compiler and the linker.

提交回复
热议问题