I am attempting to learn the source code of grep by building it according to the README-hacking. However, when debugging the source code, I am unable to step into the re_compile_pattern
function. The gdb mentions that the function links to libc.so.6
. Is there any way to resolve this issue, such as editing the Makefile? I found the Makefile for grep to be complex and I am unsure how to go about it.
I am considering building the gnulib and writing my own code to call it. However, I encountered an error stating "possibly undefined macro: gl_CHECK_NEXT_HEADERS." I will attempt to resolve this issue later using WSL.
Environment: Termux (Android) Distribution: Archlinux Device: Honor 10
The error "possibly undefined macro: gl_CHECK_NEXT_HEADERS" indicates that the
configure
file has not been correctly generated. There are two ways to get a working tarball with a correctconfigure
file:Then, use
./configure --help
to see the package specific configuration option. This help displays, among other options:So, what you need here, is
--with-included-regex
.Then, use the general flags for getting debuggable output. For mixed C/C++ programs, use
CFLAGS="-ggdb" CXXFLAGS="-ggdb"
. The default for both variables is-g -O2
, which enables optimizations that makes for a suboptimal debugging experience. Since grep uses C only,CFLAGS="-ggdb"
is sufficient.In summary, use
Finally, note that the source code of the GNU regular expression implementation is not well-suited for learning. It's a production-quality implementation with many optimizations. Probably only two persons in the world understand this implementation's code: Paul Eggert and the original author Isamu Hasegawa. For learning, simpler regular expression implementations are better suited, see Wikipedia.