llvmpipe: Allow to build without udis86.
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 18 Aug 2009 20:08:38 +0000 (21:08 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Sat, 29 Aug 2009 08:21:34 +0000 (09:21 +0100)
scons/udis86.py [new file with mode: 0644]
src/gallium/drivers/llvmpipe/SConscript
src/gallium/drivers/llvmpipe/lp_bld_debug.c
src/gallium/winsys/xlib/SConscript

diff --git a/scons/udis86.py b/scons/udis86.py
new file mode 100644 (file)
index 0000000..ba71d4e
--- /dev/null
@@ -0,0 +1,42 @@
+"""udis86
+
+Tool-specific initialization for udis86
+
+"""
+
+#
+# Copyright (c) 2009 VMware, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+def generate(env):
+    conf = env.Configure()
+
+    if conf.CheckHeader('udis86.h'): # and conf.CheckLib('udis86'):
+        env.Append(CPPDEFINES = [('HAVE_UDIS86', '1')])
+        env.Prepend(LIBS = ['udis86'])
+
+    conf.Finish()
+
+def exists(env):
+    return True
+
+# vim:set ts=4 sw=4 et:
index b880ca0..97af1b9 100644 (file)
@@ -2,6 +2,7 @@ Import('*')
 
 env = env.Clone()
 
+env.Tool('udis86')
 env.ParseConfig('llvm-config --cppflags')
 
 llvmpipe = env.ConvenienceLibrary(
@@ -57,7 +58,6 @@ llvmpipe = env.ConvenienceLibrary(
 
 env = env.Clone()
 
-env.Prepend(LIBS = 'udis86')
 env['LINK'] = env['CXX']
 env.ParseConfig('llvm-config --libs jit interpreter nativecodegen bitwriter')
 env.Prepend(LIBS = [llvmpipe] + auxiliaries)
index f8da1c9..ccbafca 100644 (file)
@@ -26,7 +26,9 @@
  **************************************************************************/
 
 
+#ifdef HAVE_UDIS86
 #include <udis86.h>
+#endif
 
 #include "util/u_debug.h"
 #include "lp_bld_debug.h"
@@ -35,6 +37,7 @@
 void
 lp_disassemble(const void* func)
 {
+#ifdef HAVE_UDIS86
    ud_t ud_obj;
 
    ud_init(&ud_obj);
@@ -69,4 +72,7 @@ lp_disassemble(const void* func)
          break;
    }
    debug_printf("\n");
+#else
+   (void)func;
+#endif
 }
index d2be07b..518fd2b 100644 (file)
@@ -31,7 +31,7 @@ if env['platform'] == 'linux' \
 
     if 'llvmpipe' in env['drivers']:
         env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
-        env.Prepend(LIBS = 'udis86')
+        env.Tool('udis86')
         env.ParseConfig('llvm-config --libs jit interpreter nativecodegen')
         env['LINK'] = env['CXX']
         sources += ['xlib_llvmpipe.c']