What does gcc without multilib mean?

前端 未结 1 1023
星月不相逢
星月不相逢 2020-12-31 01:52

I was trying to use the omh.h header file and I realized it was missing. I tried reinstalling gcc on my mac using brew. This is the message I got at the end of

相关标签:
1条回答
  • 2020-12-31 02:37

    Multilib means support for multiple architectures, so you can compile binaries for them.

    Given the bug you show, you should be safe as long you build binaries for AMD64 architecture (64-bit) and IA32, as that is what your machine is.

    Otherwise, better to choose without multilib.

    0 讨论(0)
提交回复
热议问题