goat
December 11, 2023, 3:40am
1
Hello
I have an issue when build the v.5.7.0
Can someone help fix this, thank you so so so much …
1 Like
dismad
December 11, 2023, 4:48am
2
That error is associted with the make file in the depends folder, have you downloaded all the needed dependencies?
sudo apt-get install \
build-essential pkg-config libc6-dev m4 g++-multilib \
autoconf libtool ncurses-dev unzip git python3 python3-zmq \
zlib1g-dev curl bsdmainutils automake libtinfo5
Hope this helps
$(build_SHA256SUM) -c $($(package)_fetched) >/dev/null 2>/dev/null || \
( test -z "$($(package)_all_sources)" || ( echo $($(package)_all_sources) | xargs -n 1 test ! -f ) || echo "Checksum missing or mismatched for $(package) source. Forcing re-download."; \
rm -f $($(package)_all_sources) $($(1)_fetched))
endef
check-packages:
@$(foreach package,$(packages),$(call check_or_remove_cached,$(package));)
@$(foreach package,$(rust_crates),$(call check_or_remove_cached,$(package));)
@$(foreach package,$(native_packages),$(call check_or_remove_cached,$(package));)
check-sources:
@$(foreach package,$(packages),$(call check_or_remove_sources,$(package));)
@$(foreach package,$(rust_crates),$(call check_or_remove_sources,$(package));)
@$(foreach package,$(native_packages),$(call check_or_remove_sources,$(package));)
$(host_prefix)/share/config.site: check-packages
check-packages: check-sources
install: check-packages $(host_prefix)/share/config.site
2 Likes
goat
December 11, 2023, 5:17am
3
so, mod please remove him, scammer?
goat
December 12, 2023, 3:37am
4
Thank you for your help.
Are these libraries safe, in your opinion?
Yes, those are all standard linux code libraries. You can search any of them individually to find out more information about what they do specifically.
goat
December 19, 2023, 5:16am
6
now I have an error? can you help?
It’s looks like a similar dependency error. Are all of the dependencies listed above installed? It’s also usually conventional to run apt update and apt upgrade afterwards.