Merge branch 'wip/pwithnall/macos-werror' into 'main'

gutils: Disable some dead code on macOS

See merge request GNOME/glib!2345
This commit is contained in:
Emmanuele Bassi 2021-11-18 14:48:07 +00:00
commit 3ec896b6f4
5 changed files with 27 additions and 11 deletions

View File

@ -436,7 +436,6 @@ macos:
- pip3 install --user ninja - pip3 install --user ninja
- export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH - export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH
script: script:
# FIXME: Add --werror
# FIXME: Use --wrap-mode=default so we download dependencies each time, # FIXME: Use --wrap-mode=default so we download dependencies each time,
# until the macOS runner is a VM where we can use a pre-made image which # until the macOS runner is a VM where we can use a pre-made image which
# already contains the dependencies. See: # already contains the dependencies. See:
@ -444,6 +443,7 @@ macos:
# - https://gitlab.gnome.org/Infrastructure/Infrastructure/issues/225 # - https://gitlab.gnome.org/Infrastructure/Infrastructure/issues/225
- meson ${MESON_COMMON_OPTIONS} - meson ${MESON_COMMON_OPTIONS}
--wrap-mode=default --wrap-mode=default
--werror
_build _build
- ninja -C _build - ninja -C _build
# FIXME: Multiple unit tests currently fails # FIXME: Multiple unit tests currently fails

View File

@ -21,6 +21,8 @@
#include "gutils.h" #include "gutils.h"
#include "gstrfuncs.h" #include "gstrfuncs.h"
void load_user_special_dirs_macos (gchar **table);
static gchar * static gchar *
find_folder (NSSearchPathDirectory type) find_folder (NSSearchPathDirectory type)
{ {
@ -51,4 +53,4 @@ load_user_special_dirs_macos(gchar **table)
table[G_USER_DIRECTORY_PUBLIC_SHARE] = find_folder (NSSharedPublicDirectory); table[G_USER_DIRECTORY_PUBLIC_SHARE] = find_folder (NSSharedPublicDirectory);
table[G_USER_DIRECTORY_TEMPLATES] = NULL; table[G_USER_DIRECTORY_TEMPLATES] = NULL;
table[G_USER_DIRECTORY_VIDEOS] = find_folder (NSMoviesDirectory); table[G_USER_DIRECTORY_VIDEOS] = find_folder (NSMoviesDirectory);
} }

View File

@ -1368,7 +1368,7 @@ get_windows_version (gboolean with_windows)
} }
#endif #endif
#ifdef G_OS_UNIX #if defined (G_OS_UNIX) && !defined (__APPLE__)
static gchar * static gchar *
get_os_info_from_os_release (const gchar *key_name, get_os_info_from_os_release (const gchar *key_name,
const gchar *buffer) const gchar *buffer)
@ -1497,7 +1497,7 @@ get_os_info_from_uname (const gchar *key_name)
else else
return NULL; return NULL;
} }
#endif #endif /* defined (G_OS_UNIX) && !defined (__APPLE__) */
/** /**
* g_get_os_info: * g_get_os_info:

View File

@ -553,7 +553,7 @@ test_os_info (void)
{ {
gchar *name; gchar *name;
gchar *contents = NULL; gchar *contents = NULL;
#ifdef G_OS_UNIX #if defined (G_OS_UNIX) && !(defined (G_OS_WIN32) || defined (__APPLE__))
struct utsname info; struct utsname info;
#endif #endif

View File

@ -425,31 +425,40 @@ endforeach
# Compiler flags # Compiler flags
if cc.get_id() == 'gcc' or cc.get_id() == 'clang' if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
warning_c_args = [ warning_common_args = [
'-Wduplicated-branches', '-Wduplicated-branches',
'-Wimplicit-fallthrough', '-Wimplicit-fallthrough',
'-Wmisleading-indentation', '-Wmisleading-indentation',
'-Wstrict-prototypes',
'-Wunused', '-Wunused',
# Due to maintained deprecated code, we do not want to see unused parameters # Due to maintained deprecated code, we do not want to see unused parameters
'-Wno-unused-parameter', '-Wno-unused-parameter',
# Due to pervasive use of things like GPOINTER_TO_UINT(), we do not support # Due to pervasive use of things like GPOINTER_TO_UINT(), we do not support
# building with -Wbad-function-cast. # building with -Wbad-function-cast.
'-Wno-bad-function-cast',
'-Wno-cast-function-type', '-Wno-cast-function-type',
# Due to function casts through (void*) we cannot support -Wpedantic: # Due to function casts through (void*) we cannot support -Wpedantic:
# https://wiki.gnome.org/Projects/GLib/CompilerRequirements#Function_pointer_conversions. # https://wiki.gnome.org/Projects/GLib/CompilerRequirements#Function_pointer_conversions.
'-Wno-pedantic', '-Wno-pedantic',
# A zero-length format string shouldn't be considered an issue. # A zero-length format string shouldn't be considered an issue.
'-Wno-format-zero-length', '-Wno-format-zero-length',
'-Werror=declaration-after-statement', # We explicitly require variadic macros
'-Wno-variadic-macros',
'-Werror=format=2', '-Werror=format=2',
'-Werror=implicit-function-declaration',
'-Werror=init-self', '-Werror=init-self',
'-Werror=missing-include-dirs', '-Werror=missing-include-dirs',
'-Werror=missing-prototypes',
'-Werror=pointer-arith', '-Werror=pointer-arith',
] ]
warning_c_args = warning_common_args + [
'-Wstrict-prototypes',
# Due to pervasive use of things like GPOINTER_TO_UINT(), we do not support
# building with -Wbad-function-cast.
'-Wno-bad-function-cast',
'-Werror=declaration-after-statement',
'-Werror=implicit-function-declaration',
'-Werror=missing-prototypes',
]
warning_cxx_args = warning_common_args
warning_objc_args = warning_c_args
warning_c_link_args = [ warning_c_link_args = [
'-Wl,-z,nodelete', '-Wl,-z,nodelete',
] ]
@ -458,10 +467,13 @@ if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
endif endif
else else
warning_c_args = [] warning_c_args = []
warning_cxx_args = []
warning_objc_args = []
warning_c_link_args = [] warning_c_link_args = []
endif endif
add_project_arguments(cc.get_supported_arguments(warning_c_args), language: 'c') add_project_arguments(cc.get_supported_arguments(warning_c_args), language: 'c')
add_project_arguments(cxx.get_supported_arguments(warning_cxx_args), language: 'cpp')
# FIXME: We cannot build some of the GResource tests with -z nodelete, which # FIXME: We cannot build some of the GResource tests with -z nodelete, which
# means we cannot use that flag in add_project_link_arguments(), and must add # means we cannot use that flag in add_project_link_arguments(), and must add
@ -755,6 +767,8 @@ if host_system == 'darwin'
add_languages('objc') add_languages('objc')
objcc = meson.get_compiler('objc') objcc = meson.get_compiler('objc')
add_project_arguments(objcc.get_supported_arguments(warning_objc_args), language: 'objc')
osx_ldflags += ['-Wl,-framework,CoreFoundation'] osx_ldflags += ['-Wl,-framework,CoreFoundation']
# Mac OS X Carbon support # Mac OS X Carbon support