Undefined reference during linking: remove_notifier, add_notifier , perform_select

Source: https://github.com/texmacs/texmacs/commit/22aefdea075f41d41b78e79af492426c61c1ca99
OS: Debian 10 aarch64
Reproduction:
./configure
make -j4
Result:
/usr/bin/ld: Objects/pipe_link.o: in function pipe_link_rep::stop()': pipe_link.cpp:(.text+0xcd8): undefined reference toremove_notifier(socket_notifier)’
/usr/bin/ld: pipe_link.cpp:(.text+0xd10): undefined reference to remove_notifier(socket_notifier)' /usr/bin/ld: Objects/pipe_link.o: in functionpipe_link_rep::start()’:
pipe_link.cpp:(.text+0x121c): undefined reference to add_notifier(socket_notifier)' /usr/bin/ld: pipe_link.cpp:(.text+0x126c): undefined reference toadd_notifier(socket_notifier)’
/usr/bin/ld: Objects/pipe_link.o: in function pipe_link_rep::feed(int)': pipe_link.cpp:(.text+0x161c): undefined reference toremove_notifier(socket_notifier)’
/usr/bin/ld: pipe_link.cpp:(.text+0x166c): undefined reference to remove_notifier(socket_notifier)' /usr/bin/ld: Objects/tm_server.o: in functiontm_server_rep::interpose_handler()’:
tm_server.cpp:(.text+0x670): undefined reference to `perform_select()’
collect2: error: ld returned 1 exit status
make[1]: *** [makefile:441: Objects/texmacs-shared.bin] Error 1
make[1]: Leaving directory ‘/home/yuejianmo/texmacs/src’
make: *** [Makefile:58: TEXMACS] Error 2

But I can compile TeXmacs when I configure as ./configure --enable-qtpipes. More, I find same issue in this old thread.

1 Like

For debian, use cmake/build_deb.sh.

It should work fine with Debian Unstable. I use it for daily development.

In general, cmake/build_deb.sh should work fine. But I run TeXmacs in my Chromebook’s linux container(Deiban 10 Stable). I don’t know whether linux container has some speical unix socket setting rather than qt tcp socket.

I post here for someone who want to install TeXmacs in Chrome OS.

1 Like