Heim > Backend-Entwicklung > C++ > Hauptteil

Warum kann mein C-Code nach dem Upgrade auf Catalina nicht mit dem „'-Header kompiliert werden?

Patricia Arquette
Freigeben: 2024-11-15 10:15:02
Original
561 Leute haben es durchsucht

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
Nach dem Login kopieren

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.

Das obige ist der detaillierte Inhalt vonWarum kann mein C-Code nach dem Upgrade auf Catalina nicht mit dem „'-Header kompiliert werden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage