Closed livneros-greeneye closed 1 year ago
Describe the problem My code fails for linking the following: connection_pool.cpp:(.text+0x1f48): undefined reference to__libc_single_threaded'`
connection_pool.cpp:(.text+0x1f48): undefined reference to
A short google search showed that __libc_single_threaded was introduced in Glibc 2.32, while I have Glibc 2.27.
__libc_single_threaded
Does redis-plus-plus require a specific Glibc version?
Environment:
Additional context Add any other context about the problem here.
I was compiling the library using Glibc 2.34 but tried to link it in my workspace contains Glibc 2.27. recompiling redis-plus-plus in a container based on Glibc 2.24 solved it.
Glibc 2.34
Glibc 2.27
Glibc 2.24
Describe the problem My code fails for linking the following:
connection_pool.cpp:(.text+0x1f48): undefined reference to
__libc_single_threaded'`A short google search showed that
__libc_single_threaded
was introduced in Glibc 2.32, while I have Glibc 2.27.Does redis-plus-plus require a specific Glibc version?
Environment:
Additional context Add any other context about the problem here.