forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from fwcd/mixxx/merge-master-2.4
Cherry-pick OpenSSL 3.1.2 onto `2.4`
- Loading branch information
Showing
7 changed files
with
96 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf | ||
index e8084ab..263ecd0 100644 | ||
--- a/Configurations/10-main.conf | ||
+++ b/Configurations/10-main.conf | ||
@@ -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; | ||
@@ -1493,7 +1496,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" => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters