[SerialICE] New patch to review for serialice: a96cec2 SerialICE: update qemu-0.15.x/build.sh

Idwer Vollering (vidwer@gmail.com) gerrit at coreboot.org
Mon Feb 25 03:57:03 CET 2013


Idwer Vollering (vidwer at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2504

-gerrit

commit a96cec2f09cdf0c1d91fa9be3c4b65c3651d251d
Author: Idwer Vollering <vidwer at gmail.com>
Date:   Mon Feb 25 03:49:04 2013 +0100

    SerialICE: update qemu-0.15.x/build.sh
    
    More recent (newer) builds of glibc need to be able to find, and use, librt.
    Update qemu-0.15.x/build.sh to make building work again.
    
    Solve linker errors that look similar to this (32-bit archlinux installation):
    /usr/bin/ld: ../qemu-timer.o: undefined reference to symbol 'timer_settime@@GLIBC_2.2'
    /usr/bin/ld: note: 'timer_settime@@GLIBC_2.2' is defined in DSO /usr/lib/librt.so.1 so try adding it to the linker command line
    /usr/lib/librt.so.1: could not read symbols: Invalid operation
    
    Change-Id: I2d335d065457788ef8aada7d0d500e84ba31e4d0
    Signed-off-by: Idwer Vollering <vidwer at gmail.com>
---
 qemu-0.15.x/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-0.15.x/build.sh b/qemu-0.15.x/build.sh
index 2cac6f5..3dfd3a5 100644
--- a/qemu-0.15.x/build.sh
+++ b/qemu-0.15.x/build.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-./configure --extra-ldflags="-ldl" --disable-kvm --disable-sdl --enable-serialice \
+./configure --extra-ldflags="-ldl -lrt" --disable-kvm --disable-sdl --enable-serialice \
 	    --target-list="x86_64-softmmu, i386-softmmu"
 
 make



More information about the SerialICE mailing list