<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000">
<blockquote type="cite">
  <pre>From: Tom Stellard <<a
 href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev">thomas.stellard at amd.com</a>>

This reverts commit 4148a29ed83d1d85bff3d4e40e847128011c3f20.

This fixes bug: <a
 href="https://bugs.freedesktop.org/show_bug.cgi?id=59334">https://bugs.freedesktop.org/show_bug.cgi?id=59334</a>

We really should be linking against libgallium.la instead of
libgallium.a, but until we can figure why linking against libgallium.la
causes runtime failures in clover we will continue to link against
libgallium.a
  </pre>
</blockquote>
Tested-by: Aaron Watry <a class="moz-txt-link-rfc2396E" href="mailto:awatry@gmail.com"><awatry@gmail.com></a><br>
<br>
Piglit runs CL tests again, but I still get a bunch of run-time
warnings along the lines of:<br>
<br>
<premain>: CommandLine Error: Argument 'info-output-file' defined
more than once!<br>
<br>
--Aaron Watry<br>
<blockquote type="cite">
  <pre>---
 src/gallium/auxiliary/Makefile.am      | 6 ++++++
 src/gallium/targets/opencl/Makefile.am | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/gallium/auxiliary/Makefile.am b/src/gallium/auxiliary/Makefile.am
index a4eee47..4979293 100644
--- a/src/gallium/auxiliary/Makefile.am
+++ b/src/gallium/auxiliary/Makefile.am
@@ -45,3 +45,9 @@ util/u_format_srgb.c: $(srcdir)/util/u_format_srgb.py
 
 util/u_format_table.c: $(srcdir)/util/u_format_table.py $(srcdir)/util/u_format_pack.py $(srcdir)/util/u_format_parse.py $(srcdir)/util/u_format.csv
        $(AM_V_GEN) $(PYTHON2) $(srcdir)/util/u_format_table.py $(srcdir)/util/u_format.csv > $@
+
+# XXX: As a work around for <a
 href="https://bugs.freedesktop.org/show_bug.cgi?id=59334">https://bugs.freedesktop.org/show_bug.cgi?id=59334</a>
+# clover needs to link against libgallium.a. Delete this once we have a real
+# fix for this bug.
+all-local: libgallium.la
+       ln -f $(builddir)/.libs/libgallium.a $(builddir)/libgallium.a
diff --git a/src/gallium/targets/opencl/Makefile.am b/src/gallium/targets/opencl/Makefile.am
index c5c3003..be8ec12 100644
--- a/src/gallium/targets/opencl/Makefile.am
+++ b/src/gallium/targets/opencl/Makefile.am
@@ -6,9 +6,11 @@ libOpenCL_la_LDFLAGS = \
        $(LLVM_LDFLAGS) \
        -version-number 1:0
 
+# We are linking against libgallium.a rather than libgallium.la to work around
+# <a href="https://bugs.freedesktop.org/show_bug.cgi?id=59334">https://bugs.freedesktop.org/show_bug.cgi?id=59334</a>
 libOpenCL_la_LIBADD = \
        $(top_builddir)/src/gallium/state_trackers/clover/libclover.la \
-       $(top_builddir)/src/gallium/auxiliary/libgallium.la \
+       $(top_builddir)/src/gallium/auxiliary/libgallium.a \
        $(GALLIUM_PIPE_LOADER_LIBS) $(LIBUDEV_LIBS) \
        -ldl \
        -lclangCodeGen \
-- 
1.7.11.4

  </pre>
</blockquote>
</body>
</html>