summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRick Liu <yrliu.ca@gmail.com>2014-05-30 14:10:20 -0700
committerPaolo Bonzini <pbonzini@redhat.com>2014-06-10 12:34:37 +0200
commit18e588b197545412cad65f0b07e13c161cac4bea (patch)
tree877285a61076652aac920536be41d5073389badc /configure
parent471f7e30a4acb898a50383516e27bca5521ff542 (diff)
downloadqemu-18e588b197545412cad65f0b07e13c161cac4bea.tar.gz
configure: duplicate/incorrect order of -lrt
'-lrt' flag duplication/incorrect order would cause 'undefined reference to clock_gettime' error during compilation time. Before fix: ... -o qemu-bridge-helper qemu-bridge-helper.o -lrt -pthread -lgthread-2.0 -lrt -lglib-2.0 After fix: ... -o qemu-bridge-helper qemu-bridge-helper.o -pthread -lgthread-2.0 -lrt -lglib-2.0 Reference: http://hi.baidu.com/sanitywolf/item/7a8b69c1e76dd220a0b50ab1 Signed-off-by: Rick Liu <yrliu.ca@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index a994f4196f..96f91ad7f0 100755
--- a/configure
+++ b/configure
@@ -3452,9 +3452,9 @@ EOF
if compile_prog "" "" ; then
:
# we need pthread for static linking. use previous pthread test result
-elif compile_prog "" "-lrt $pthread_lib" ; then
- LIBS="-lrt $LIBS"
- libs_qga="-lrt $libs_qga"
+elif compile_prog "" "$pthread_lib -lrt" ; then
+ LIBS="$LIBS -lrt"
+ libs_qga="$libs_qga -lrt"
fi
if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \