Hello Kudu Jenkins,
I'd like you to reexamine a change. Please visit
http://gerrit.cloudera.org:8080/3090
to look at the new patch set (#2).
Change subject: Remove the use of boost::lock_guard in oid_generator.cc
......................................................................
Remove the use of boost::lock_guard in oid_generator.cc
When using the OidGenerator class in the client we would get:
/usr/bin/ld: /usr/lib/x86_64-linux-gnu/libboost_system.a(error_code.o):
relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a
shared object; recompile with -fPIC
That is, building and linking the client would now require libboost_system to
be compiled with -fPIC, which it isn't in some architectures.
Adar suggested that if we removed the use of boost::lock_guard in
oid_generator.cc we might be able to forego the dependency on libboost_system
by the client altogether, at least for now. This turned out to be true, thus
this patch makes that change.
Change-Id: I224bda0faaf57ed6d6cce0b223d3484317b83342
---
M src/kudu/util/oid_generator.cc
1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/90/3090/2
--
To view, visit http://gerrit.cloudera.org:8080/3090
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I224bda0faaf57ed6d6cce0b223d3484317b83342
Gerrit-PatchSet: 2
Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-Owner: David Ribeiro Alves <[email protected]>
Gerrit-Reviewer: Kudu Jenkins