Skip to content

Commit

Permalink
Move libs to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
perkfly committed Jul 14, 2024
1 parent 94dee75 commit 71757be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ jobs:
export LD=$TOOLCHAIN/bin/ld
export RANLIB=$TOOLCHAIN/bin/llvm-ranlib
export STRIP=$TOOLCHAIN/bin/llvm-strip
export LIBS="-lssl -lcrypto -lc++"
./configure --prefix=${{ runner.temp }}/install \
--with-android=yes \
--host=${{ matrix.host }} \
Expand Down Expand Up @@ -193,7 +192,6 @@ jobs:
export LD=$TOOLCHAIN/bin/ld
export RANLIB=$TOOLCHAIN/bin/llvm-ranlib
export STRIP=$TOOLCHAIN/bin/llvm-strip
export LIBS="-lssl -lcrypto -lc++"
./configure --prefix=${{ runner.temp }}/install --enable-static \
--with-android=yes \
--host=${{ matrix.host }} \
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ $(CURL_VERSION)/.chrome: $(chrome_libs) $(CURL_VERSION).tar.gz $(CURL_VERSION)/.
if test -n "$(with_ca_path)"; then \
config_flags="$$config_flags --with-ca-path=$(with_ca_path)"; \
fi; \
add_libs="-pthread"; \
add_libs="-pthread -lssl -lcrypto -lc++"; \
}

echo "Configuring curl with: $$config_flags"
Expand Down

0 comments on commit 71757be

Please sign in to comment.