Changes between Initial Version and Version 1 of Ticket #70477, comment 11
- Timestamp:
- Sep 18, 2024, 1:08:22 AM (8 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #70477, comment 11
initial v1 1 1 It appears that this Xcode 15.4 and Xcode 16 compile failure can be eliminated if we add -Wno-enum-constexpr-conversion to the compile flags. 2 {{{ 3 --- src/3rdparty/mapbox-gl-native/mapbox-gl-native.pro.orig 2024-09-17 20:54:13 4 +++ src/3rdparty/mapbox-gl-native/mapbox-gl-native.pro 2024-09-17 20:58:59 5 @@ -19,7 +19,8 @@ 6 -O3 \ 7 -ftemplate-depth=1024 \ 8 -fvisibility-inlines-hidden \ 9 - -fvisibility=hidden 10 + -fvisibility=hidden \ 11 + -Wno-enum-constexpr-conversion 12 }}}