Windows: Fix GCC/Clang argument being passed to MSVC
Fixes #4620 (cherry picked from commits972b0f78b3
andc7292b1f3d
)
This commit is contained in:
parent
f61f515872
commit
d66b04921f
|
@ -650,8 +650,10 @@ env_ssl.Append(CPPPATH=["#drivers/builtin_openssl2/crypto/asn1"])
|
|||
env_ssl.Append(CPPPATH=["#drivers/builtin_openssl2/crypto/modes"])
|
||||
#env_ssl.Append(CPPPATH=["#drivers/builtin_openssl2/crypto/store"])
|
||||
env_ssl.Append(CPPFLAGS=["-DOPENSSL_NO_ASM","-DOPENSSL_THREADS","-DL_ENDIAN"])
|
||||
env_ssl.Append(CFLAGS=["-Wno-error=implicit-function-declaration"]);
|
||||
|
||||
# Workaround for compilation error with GCC/Clang when -Werror is too greedy (GH-4517)
|
||||
import os
|
||||
if not (os.name=="nt" and os.getenv("VSINSTALLDIR")!=None): # not Windows and not MSVC
|
||||
env_ssl.Append(CFLAGS=["-Wno-error=implicit-function-declaration"])
|
||||
|
||||
env_ssl.add_source_files(env.drivers_sources,openssl_sources)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue