MySQL Forums
Forum List  »  Source, Builds, Binaries

Re: make error: undefined reference to __vdso_clock_gettime (Doning mysql TPC-C benchmark)
Posted by: Kent Boortz
Date: April 12, 2008 02:23PM

This is most likely not a MySQL bug, but a problem with the
version of glibc used and static builds. I suggest you change
the configure options

--with-client-ldflags=-all-static
--with-mysqld-ldflags=-all-static

that tell the build to create static binaries, with

--with-client-ldflags=-static
--with-mysqld-ldflags=-static

that tells the build to link with the static libraries
of its own libraries, i.e. command line "mysql" will
not depend on "libmysqlclient.so". This is how we
at MySQL/Sun build them,

kent

Kent Boortz, Release Staff Engineer
Oracle, the MySQL team, www.mysql.com

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: make error: undefined reference to __vdso_clock_gettime (Doning mysql TPC-C benchmark)
2765
April 12, 2008 02:23PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.