Changes between Version 13 and Version 14 of WimplicitFunctionDeclaration
- Timestamp:
- May 7, 2024, 4:12:19 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WimplicitFunctionDeclaration
v13 v14 24 24 }}} 25 25 26 MacPorts displays the same warning message, "Warning: Configuration logfiles contain indications of -Wimplicit-function-declaration; check that features were not accidentally disabled", for every port. Each of the following lines gives the name of a function the configure script accessed without declaring it first. It is a clue for investigating the situation. The implicit function declaration could potentially cause the port to configure incorrectly when using Xcode 12or newer. Each function name will only be listed once even if the configure script accesses that function multiple times.26 MacPorts displays the same warning message, "Warning: Configuration logfiles contain indications of -Wimplicit-function-declaration; check that features were not accidentally disabled", for every port. Each of the following lines gives the name of a function the configure script accessed without declaring it first. It is a clue for investigating the situation. The implicit function declaration could potentially cause the port to configure incorrectly when using Apple clang 12 or newer (from Xcode 12 or the Xcode 12 version of the command line tools or newer) or llvm.org clang 16 or newer. Each function name will only be listed once even if the configure script accesses that function multiple times. 27 27 28 28 In this example, there are three indications. They are related to the functions `strcmp`, `exit`, and `at_quick_exit`.