Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
openssl
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
openssl
Merge requests
!63
Update from debian/bookworm for apertis/v2024pre
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update from debian/bookworm for apertis/v2024pre
proposed-updates/debian/bookworm/c647d305
into
apertis/v2024pre
Overview
0
Commits
5
Pipelines
2
Changes
228
Merged
Apertis CI robot
requested to merge
proposed-updates/debian/bookworm/c647d305
into
apertis/v2024pre
1 year ago
Overview
0
Commits
5
Pipelines
2
Changes
228
Expand
0
0
Merge request reports
Compare
apertis/v2024pre
version 1
4f508c0e
1 year ago
apertis/v2024pre (base)
and
latest version
latest version
7c169c9d
5 commits,
1 year ago
version 1
4f508c0e
4 commits,
1 year ago
228 files
+
3923
−
2224
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
228
Search (e.g. *.vue) (Ctrl+P)
Configurations/10-main.conf
+
7
−
4
Options
@@ -9,19 +9,22 @@ sub vc_win64a_info {
$
vc_win64a_info
= {
AS
=>
"nasm"
,
ASFLAGS
=>
"-g"
,
asflags
=>
"-Ox -f win64 -DNEAR"
,
asoutflag
=>
"-o "
};
asoutflag
=>
"-o "
,
perlasm_scheme
=>
"nasm"
};
}
elsif
($
disabled
{
asm
}) {
# assembler is still used to compile uplink shim
$
vc_win64a_info
= {
AS
=>
"ml64"
,
ASFLAGS
=>
"/nologo /Zi"
,
asflags
=>
"/c /Cp /Cx"
,
asoutflag
=>
"/Fo"
};
asoutflag
=>
"/Fo"
,
perlasm_scheme
=>
"masm"
};
}
else
{
$
die
->(
"NASM not found - make sure it's installed and available on %PATH%\n"
);
$
vc_win64a_info
= {
AS
=>
"{unknown}"
,
ASFLAGS
=>
""
,
asflags
=>
""
,
asoutflag
=>
""
};
asoutflag
=>
""
,
perlasm_scheme
=>
"auto"
};
}
}
return
$
vc_win64a_info
;
@@ -1416,7 +1419,7 @@ my %targets = (
sys_id
=>
"WIN64A"
,
uplink_arch
=>
'x86_64'
,
asm_arch
=>
'x86_64'
,
perlasm_scheme
=>
"auto"
,
perlasm_scheme
=>
sub
{
vc_win64a_info
()->{
perlasm_scheme
} }
,
multilib
=>
"-x64"
,
},
"VC-WIN32"
=> {
Loading