[PATCH v15 1/9] include/android: Add stub for glib

Kamil Konieczny kamil.konieczny at linux.intel.com
Thu Jun 5 10:00:24 UTC 2025


Hi Jeevaka,
On 2025-06-04 at 17:16:48 +0000, Jeevaka Prabu Badrappan wrote:
> From: Sapna Singh <sapna1.singh at intel.com>
> 
> As glib is not available in Android, not able to build igt for Android.
> 
> Provided stub implementations so igt can be compiled for both Android
> and linux from same code base. In case of linux systems, system
> libraries will be used whereas for Android stubs will be used with
> reduced test coverage.
> 
> Signed-off-by: Sapna Singh <sapna1.singh at intel.com>
> Signed-off-by: Jeevaka Prabu Badrappan <jeevaka.badrappan at intel.com>
> ---
>  include/android/glib.h | 55 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 55 insertions(+)
>  create mode 100644 include/android/glib.h

Reviewed-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>

> 
> diff --git a/include/android/glib.h b/include/android/glib.h
> new file mode 100644
> index 000000000..8540d3514
> --- /dev/null
> +++ b/include/android/glib.h
> @@ -0,0 +1,55 @@
> +/* SPDX-License-Identifier: MIT */
> +
> +#ifndef _IGT_ANDROID_GLIB_H
> +#define _IGT_ANDROID_GLIB_H
> +
> +#include <stdbool.h>
> +#include <stdlib.h>
> +
> +#define G_KEY_FILE_NONE 0
> +#define G_REGEX_OPTIMIZE 0
> +
> +typedef struct _GError {
> +	int code;
> +	char *message;
> +} GError;
> +
> +typedef struct _GKeyFile {
> +	char *key;
> +	char *value;
> +} GKeyFile;
> +
> +typedef struct _GMatchInfo {
> +	int dummy;
> +} GMatchInfo;
> +
> +typedef int gint;
> +typedef size_t gsize;
> +typedef char gchar;
> +typedef unsigned char guchar;
> +typedef void GRegex;
> +typedef int GRegexMatchFlags;
> +
> +static inline void g_clear_error(GError **error) { }
> +static inline void g_error_free(GError *error) { }
> +
> +static inline const char *g_get_home_dir(void) { return "/data/local/tmp/igt"; }
> +
> +static inline void g_key_file_free(GKeyFile *file) { }
> +static inline GKeyFile *g_key_file_new(void) { return NULL; }
> +static inline int g_key_file_get_integer(GKeyFile *key_file,
> +	const char *group_name, const char *key, GError **error) { return 0; }
> +static inline char *g_key_file_get_string(GKeyFile *key_file,
> +	const char *group_name, const char *key, GError **error) { return NULL; }
> +static inline bool g_key_file_load_from_file(GKeyFile *key_file,
> +	const char *file, int flags, GError **error) { return false; }
> +
> +static inline GRegex *g_regex_new(const char *pattern, int compile_options,
> +	int match_options, GError **error) { return NULL; }
> +static inline void g_regex_unref(GRegex *pattern) { };
> +static inline gboolean g_regex_match(GRegex *regex, const gchar *string,
> +	GRegexMatchFlags match_options, GMatchInfo **match_info) { return false; }
> +
> +static gchar *g_base64_encode(const guchar *data, gsize len) { return NULL; }
> +
> +#endif /* _IGT_ANDROID_GLIB_H */
> -- 
> 2.49.0
> 


More information about the igt-dev mailing list