From 11e867f1fbccaa1d55e0406ba6c970492f22e56a Mon Sep 17 00:00:00 2001 From: Amand Tihon Date: Sat, 8 Aug 2009 19:46:06 +0200 Subject: [PATCH] Correct stupid bugs. --- bold | 4 ++-- runtime/bold_ibh-x86_64.asm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bold b/bold index cbeeac5..74428bd 100755 --- a/bold +++ b/bold @@ -80,13 +80,13 @@ def main(): options.raw = False if not options.raw: - for d in ['.', 'data', '/usr/lib/bold/', '/usr/local/lib/bold']: + for d in ['.', 'runtime', '/usr/lib/bold/', '/usr/local/lib/bold']: f = os.path.join(d, 'bold_ibh-x86_64.o') if os.path.isfile(f): objects.append(f) break else: - print >>sys.stderr, "Could not find boldsymres-x86_64.o." + print >>sys.stderr, "Could not find bold_ibh-x86_64.o." return 1 diff --git a/runtime/bold_ibh-x86_64.asm b/runtime/bold_ibh-x86_64.asm index 0336200..69d4610 100644 --- a/runtime/bold_ibh-x86_64.asm +++ b/runtime/bold_ibh-x86_64.asm @@ -26,7 +26,7 @@ BITS 64 CPU X64 -global _bold__ibh +global _bold__ibh_start global exit extern _dt_debug ; defined by bold linker -- 2.39.2