From: Ian Romanick Date: Fri, 2 Jul 2010 21:43:01 +0000 (-0700) Subject: glsl2: Print the linking info log in the stand-alone compiler X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d962e66e319191d5b94291b6f55d720df71130a;p=mesa.git glsl2: Print the linking info log in the stand-alone compiler --- diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp index 16bbc8cd3f1..9bed2c6bccc 100644 --- a/src/glsl/main.cpp +++ b/src/glsl/main.cpp @@ -266,6 +266,9 @@ main(int argc, char **argv) if ((status == EXIT_SUCCESS) && do_link) { link_shaders(whole_program); status = (whole_program->LinkStatus) ? EXIT_SUCCESS : EXIT_FAILURE; + + if (strlen(whole_program->InfoLog) > 0) + printf("Info log for linking:\n%s\n", whole_program->InfoLog); } talloc_free(whole_program);