DLL object files should not be built with /Zl"
When building the DLLs, we depend on the correct default C RTL info. Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
@@ -1238,7 +1238,9 @@ sub vc_wince_info {
|
|||||||
cc => "cl",
|
cc => "cl",
|
||||||
cflags => "-W3 -wd4090 -Gs0 -GF -Gy -nologo -DOPENSSL_SYS_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE",
|
cflags => "-W3 -wd4090 -Gs0 -GF -Gy -nologo -DOPENSSL_SYS_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE",
|
||||||
coutflag => "/Fo",
|
coutflag => "/Fo",
|
||||||
lib_cflags => "/Zl /Zi /Fdlib",
|
lib_cflags => sub { join(" ",
|
||||||
|
($disabled{shared} ? "/Zl" : ()),
|
||||||
|
"/Zi /Fdlib") },
|
||||||
dso_cflags => "/Zi",
|
dso_cflags => "/Zi",
|
||||||
bin_cflags => "/Zi /Fdapp",
|
bin_cflags => "/Zi /Fdapp",
|
||||||
lflags => add("/debug"),
|
lflags => add("/debug"),
|
||||||
|
|||||||
Reference in New Issue
Block a user