From: Rob Herring Date: Mon, 8 Jan 2018 21:17:48 +0000 (-0600) Subject: tgsi: include struct definitions for tgsi_build declarations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af8fd389961aabdac0a5b0e6171b17950a659f30;p=mesa.git tgsi: include struct definitions for tgsi_build declarations Many of the functions declared in tgsi_build.h return structs (not struct pointers). Therefore the full struct definitions are needed to avoid warnings or errors: In file included from src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp:23: external/mesa3d/src/gallium/auxiliary/tgsi/tgsi_build.h:47:1: error: 'tgsi_build_header' has C-linkage specified, but returns incomplete type 'struct tgsi_header' which could be incompatible with C [-Werror,-Wreturn-type-c-linkage] This error shows up on Android builds using clang and -Werror. Cc: Ilia Mirkin Signed-off-by: Rob Herring --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.h b/src/gallium/auxiliary/tgsi/tgsi_build.h index 53f31932c02..31de76fe532 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_build.h +++ b/src/gallium/auxiliary/tgsi/tgsi_build.h @@ -28,11 +28,7 @@ #ifndef TGSI_BUILD_H #define TGSI_BUILD_H - -struct tgsi_token; -struct tgsi_full_dst_register; -struct tgsi_full_src_register; - +#include "tgsi/tgsi_parse.h" #if defined __cplusplus extern "C" {