-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux glibc 2.38 implements strlcat/strlcpy #489
Comments
nixpkgs build of Adding it here so theres more visibility of this issue across the community |
Excerpt from CMakeLists.txt: Some platforms provide their own strlcpy & strlcat. (BSD, MacOSX) This was all working fine until these were added to the gnu c library 2.38.
This test is not detecting them for glibc 2.38 resulting in a conflict. This is how they are declared in include/string.h: extern __typeof (strlcpy) __strlcpy; Apparently cmake does not recognize this style. |
I have not been able to test this yet when starting with the most recent Ubuntu. NixOS makes no sense to me. I figured out how to effectively install applications (e.g. gcc) with "nix-shell -p ..." but could not figure how to get the required libraries. Does anyone have some suggestions on how to set up a test OS with this new library version? |
@wb2osz I would do the following to get a build environment for direwolf with nix:
Then you can go about building direwolf per the normal direwolf build instructions in this repo. If you'd like to know more about One thing I did notice was that while this was broken on This breakage seems to have been fixed in the most recent version
|
@wb2osz This longer seems like an issue for me |
Thank you for confirming that direwolf release 1.7 seems to be OK with glibc 2.38 on NixOS. |
I'm also confirming that release 1.7 works with glibc 2.38 on poky (yocto build system). |
I'd like to add that I'm also seeing this but using glibc 2.36. Maybe the patch broke something. I'm seeing it on Debian 12 (stable) compiling from the current master. I installed libbsd-dev to see if it would change anything but it did not. ldd (Debian GLIBC 2.36-9+rpt2+deb12u7) 2.36
|
This was fixed in the direwolf "dev" branch which will become release 1.8 at some point. |
I just tested dev and it resulted in the same and even more compiler warnings.
|
As per the release-announcement for glibc 2.38 (https://lists.gnu.org/archive/html/info-gnu/2023-07/msg00010.html) :
When doing Linux builds for release 1.6 using the updated system library, the
strlcat
/strlcpy
implementations from glibc clash with the implementations from this project (referenced insrc/direwolf.h
,external/misc/strlcat.c
andexternal/misc/strlcpy.c
).More precisely, when compiling
strlcat.c
, the compiler first saw the preprocessor-define fromsrc/direwolf.h:301
, tried redefining all instances ofstrlcpy
tostrlcpy_debug
, and then while resolving other include-directives started redefining thestrlcpy
references from glibc to point tostrlcpy_debug
.The error message reported by gcc was about
src/direwolf.h:301,302
, not explaining too much about the root cause:While for my purposes I've fixed this bug (the project now compiles under Linux, patch here), I'm also reporting it upstream to raise awareness about this issue (hopefully no-one else wastes time trying to understand the error message in this scenario).
The text was updated successfully, but these errors were encountered: