Just to update. I am trying to get image-compiler to work but , at least at my level, it is hideously complicated and I have no idea how to debug it.
I managed to get audacity to build and it actually seems to work, however the UI is dorked up with missing icons as you would expect.
I posted this to discord, but I’m not sure it was the right place so I’m re posting it here .
Hi, I am a hacker that likes to try to build Audacity from time to time. I don’t use conan. I am stuck with in the target “lib-theme-resources”. The "image-compiler " program cannot complete building themes. I ran it with strace and it stops with this last message :
The build stops when executing the target, lib-theme-resources
It looks like it wants to copy to git. Not sure why it’s doing that or how to stop it.
6804 write(3, “/// @file LightThemeAsCeeCode.”…, 35) = 35
6805 write(3, “/// @brief This file was Auto-”…, 44) = 44
6806 write(3, “///\r\n”, 5) = 5
6807 write(3, “/// It is included by Theme.cp”…, 36) = 36
6808 write(3, “/// Only check this into Git i”…, 83) = 83
. . . .
write(3, “96,”, 3) = 3
write(3, “130,”, 4) = 4
brk(0x67e000) = 0x67e000
brk(0x66e000) = 0x66e000
brk(0x65e000) = 0x65e000
brk(0x64e000) = 0x64e000
write(3, “\r\n”, 2) = 2
close(3) = 0
munmap(0x7efffd8f2000, 1105920) = 0
munmap(0x7f000b215000, 368640) = 0
futex(0x7f0019dff678, FUTEX_WAKE_PRIVATE, 2147483647) = 0
eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK) = 3
futex(0x7f0019dff678, FUTEX_WAKE_PRIVATE, 2147483647) = 0
poll([{fd=3, events=POLLIN}], 1, -1
It seems that the file descriptor is closes and the program then tries to poll it.
When I use gdb basically the same result. Program received signal SIGINT, Interrupt.
0x00007ffff60ff3f4 in GI_poll (fds=0x5c4670, nfds=1, timeout=-1) at …/sysdeps/unix/sysv/linux/poll.c:29
29 return SYSCALL_CANCEL (poll, fds, nfds, timeout);