>  기사  >  백엔드 개발  >  Catalina로 업그레이드한 후 C 코드가 `` 헤더로 컴파일되지 않는 이유는 무엇입니까?

Catalina로 업그레이드한 후 C 코드가 `` 헤더로 컴파일되지 않는 이유는 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-15 10:15:02562검색

Why is my C++ code failing to compile with the `` header after upgrading to Catalina?

Catalina C++: Header Error: Undefined 'signbit' Member

Introduction

Upgrading to Catalina from Mojave can introduce issues when compiling programs that rely on the header. This is due to a change in how the system libraries are handled in Catalina.

Problem Statement

After the upgrade, attempting to compile code using the header results in errors such as:

error: no member named 'signbit' in the global namespace
error: no member named 'fpclassify' in the global namespace
error: no member named 'isfinite' in the global namespace

Cause

Catalina purges and protects the /usr/include directory, which is where the C headers are typically found. As a result, build systems may fail to locate the necessary headers.

Solution

To resolve this issue, it is necessary to point the build system to the correct headers using the -isysroot compiler flag. Here are the steps to do so:

  1. Verify that Xcode is up to date.
  2. Determine the system SDK path using xcrun --show-sdk-path, and modify the build system accordingly:

    • CMake: set(CMAKE_OSX_SYSROOT /sdk/path) or set(CMAKE_CXX_FLAGS "[...] -isysroot /sdk/path")
    • Other compilers: Add -isysroot /sdk/path to the compiler flags

Conclusion

Following these steps should resolve the issue and allow programs using the header to compile successfully under Catalina.

위 내용은 Catalina로 업그레이드한 후 C 코드가 `` 헤더로 컴파일되지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.