Sudhakar Verma
Sudhakar Verma
I mean writing an x86-64 analyzer with x86-64 would be a pretty rad task but for now I am comfortable with go/python as high level languages so.. 😅
Looks like the same in an Alpine Linux docker container ```console $ docker run --name test -it --rm rust:alpine sh # apk add musl-dev # cd # git clone https://github.com/uutils/coreutils.git...
I'm not sure build.rs should be the best place to achieve that - it should not be treated as an install script.
Can be replicated on an alpine linux docker container too ```console $ docker run --name test -it --rm rust:alpine sh # apk add musl-dev # cd # git clone https://github.com/uutils/coreutils.git...
Is this expected though?? ```console $ docker run --name test -it --rm ubuntu:noble bash root@22ce0d0f806d:/# which cp /usr/bin/cp root@22ce0d0f806d:/# cp $(which cp) /tmp root@22ce0d0f806d:/# cp /tmp/cp $(which cp) cp: cannot...
Hello @kevindiffily `needrestart` is already available in debian and ubuntu - You can use those for some inspiration on how to build https://sources.debian.org/src/needrestart/3.7-3.3/debian/ for example will have all things needed...
I think this should be enough in the Makefile.in ```Makefile .PHONY: uninstall uninstall: rm $(DESTDIR)$(bindir)/rsync$(EXEEXT) $(DESTDIR)$(bindir)/rsync-ssl if test -d $(DESTDIR)$(mandir); then \ rm $(DESTDIR)$(mandir)/man1/rsync.1 $(DESTDIR)$(mandir)/man1/rsync-ssl.1; \ rm $(DESTDIR)$(mandir)/man5/rsyncd.conf.5; \ fi...
In a Makefile, the `.PHONY` target is used to declare phony targets. A phony target is not a file like the common targets. Its just a label for a set...
Looks like on debian bookworm even after installing whats mentioned on the docs here - some packages are still missing. As charmitro suggested ```console # sudo apt build-dep rsync Reading...
I tried with a clean bookworm container without the `build-dep` step and it succeeded as well. Maybe its a config issue for you - the default build works fine [logs-no-build-deps.txt](https://github.com/user-attachments/files/21402442/logs-no-build-deps.txt)