Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions deps/curl.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## CURL ##
include $(SRCDIR)/curl.version

ifeq ($(USE_SYSTEM_OPENSSL), 0)
$(BUILDDIR)/curl-$(CURL_VER)/build-configured: | $(build_prefix)/manifest/openssl
endif

ifeq ($(USE_SYSTEM_LIBSSH2), 0)
$(BUILDDIR)/curl-$(CURL_VER)/build-configured: | $(build_prefix)/manifest/libssh2
endif
Expand Down
2 changes: 2 additions & 0 deletions deps/openssl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ else ifeq ($(ARCH),ppc64le)
OPENSSL_TARGET := linux-ppc64le
else ifeq ($(ARCH),powerpc64le)
OPENSSL_TARGET := linux-ppc64le
else ifeq ($(ARCH),riscv64)
OPENSSL_TARGET := linux64-riscv64
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reference for this target name: https://github.com/openssl/openssl/blob/817a2b2b4955da0233fe7e6e4bd16c0255262b4f/Configurations/10-main.conf#L819. Or run ./Configure --help on a riscv64-linux box.

endif
else
OPENSSL_TARGET := unknown
Expand Down
Loading