Latest update, add TLS 1.3 session time configuration.
This commit is contained in:
@@ -1431,7 +1431,7 @@ my %targets = (
|
||||
|
||||
#### Cygwin
|
||||
"Cygwin-common" => {
|
||||
inherit_from => [ "BASE_unix", asm("x86_asm") ],
|
||||
inherit_from => [ "BASE_unix" ],
|
||||
template => 1,
|
||||
|
||||
CC => "gcc",
|
||||
|
||||
@@ -151,9 +151,9 @@
|
||||
return "" if $cache{$lib};
|
||||
$OUT .= obj2dso(lib => $lib,
|
||||
attrs => $unified_info{attributes}->{$lib},
|
||||
objs => $unified_info{shared_sources}->{$lib},
|
||||
objs => $unified_info{sources}->{$lib},
|
||||
deps => [ resolvedepends($lib) ]);
|
||||
foreach (@{$unified_info{shared_sources}->{$lib}}) {
|
||||
foreach (@{$unified_info{sources}->{$lib}}) {
|
||||
# If this is somehow a compiled object, take care of it that way
|
||||
# Otherwise, it might simply be generated
|
||||
if (defined $unified_info{sources}->{$_}) {
|
||||
|
||||
@@ -32,6 +32,7 @@ my %shared_info;
|
||||
return {
|
||||
%{$shared_info{'gnu-shared'}},
|
||||
shared_defflag => '-Wl,--version-script=',
|
||||
dso_ldflags => '-z defs',
|
||||
};
|
||||
},
|
||||
'bsd-gcc-shared' => sub { return $shared_info{'linux-shared'}; },
|
||||
|
||||
Reference in New Issue
Block a user