mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 06:01:11 +00:00
Fix missing -static-libgcc for dlls
This commit is contained in:
parent
7f61053371
commit
af39e3e597
|
@ -12,6 +12,8 @@ Bugfix
|
||||||
* Fix thread-safety issue in SSL debug module (found by Edwin van Vliet).
|
* Fix thread-safety issue in SSL debug module (found by Edwin van Vliet).
|
||||||
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
|
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
|
||||||
Leisink).
|
Leisink).
|
||||||
|
* Fix missing -static-ligcc when building shared libraries for Windows with
|
||||||
|
make.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the
|
* Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the
|
||||||
|
|
|
@ -83,7 +83,7 @@ libpolarssl.dylib: libpolarssl.a
|
||||||
|
|
||||||
libpolarssl.dll: libpolarssl.a
|
libpolarssl.dll: libpolarssl.a
|
||||||
echo " LD $@"
|
echo " LD $@"
|
||||||
$(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS) -lws2_32 -lwinmm -lgdi32
|
$(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS) -lws2_32 -lwinmm -lgdi32 -static-libgcc
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
echo " CC $<"
|
echo " CC $<"
|
||||||
|
|
Loading…
Reference in a new issue