This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Original file line number Diff line number Diff line change 9
9
10
10
<ItemGroup >
11
11
<PackageReference Include =" Microsoft.DotNet.Build.Tasks.Packaging" Version =" $(MicrosoftDotNetBuildTasksPackagingVersion)" />
12
+ <PackageDownload Include =" Microsoft.DotNet.Helix.Sdk" Version =" [$(MicrosoftDotNetHelixSdkVersion)]" />
12
13
<PackageReference Include =" Microsoft.NETCore.Platforms" Version =" $(MicrosoftNETCorePlatformsVersion)" />
13
14
</ItemGroup >
14
- </Project >
15
+ </Project >
Original file line number Diff line number Diff line change 17
17
<!-- arcade -->
18
18
<MicrosoftDotNetBuildTasksFeedVersion >2.2.0-beta.19461.7</MicrosoftDotNetBuildTasksFeedVersion >
19
19
<MicrosoftDotNetBuildTasksPackagingVersion >1.0.0-beta.19461.7</MicrosoftDotNetBuildTasksPackagingVersion >
20
+ <MicrosoftDotNetHelixSdkVersion >2.0.0-beta.19461.7</MicrosoftDotNetHelixSdkVersion >
20
21
<MicrosoftDotNetXUnitConsoleRunnerVersion >2.5.1-beta.19278.1</MicrosoftDotNetXUnitConsoleRunnerVersion >
21
22
<!-- roslyn -->
22
23
<MicrosoftNetCompilersToolsetVersion >3.3.0-beta2-19367-02</MicrosoftNetCompilersToolsetVersion >
Original file line number Diff line number Diff line change 52
52
parameters :
53
53
jobTemplate : test-job.yml
54
54
buildConfig : checked
55
- platformGroup : all
55
+ platforms :
56
+ - Linux_arm
57
+ - Linux_arm64
58
+ - Linux_musl_x64
59
+ - Linux_musl_arm64
60
+ - Linux_rhel6_x64
61
+ - Linux_x64
62
+ - OSX_x64
63
+ - Windows_NT_x64
64
+ - Windows_NT_x86
65
+ # - Windows_NT_arm return this when https://github.com/dotnet/runtime/issues/1097 is fixed.
66
+ - Windows_NT_arm64
56
67
helixQueueGroup : ci
57
68
jobParameters :
58
69
testGroup : outerloop
73
84
- OSX_x64
74
85
- Windows_NT_x64
75
86
- Windows_NT_x86
76
- - Windows_NT_arm
87
+ # - Windows_NT_arm return this when https://github.com/dotnet/runtime/issues/1097 is fixed.
77
88
- Windows_NT_arm64
78
89
helixQueueGroup : ci
79
90
jobParameters :
84
95
#
85
96
# Formatting
86
97
#
87
- - template : /eng/platform-matrix.yml
88
- parameters :
89
- jobTemplate : format-job.yml
90
- platforms :
91
- - Linux_x64
92
- - Windows_NT_x64
98
+ # - template: /eng/platform-matrix.yml
99
+ # parameters:
100
+ # jobTemplate: format-job.yml
101
+ # platforms:
102
+ # - Linux_x64
103
+ # - Windows_NT_x64
Original file line number Diff line number Diff line change 64
64
- Linux_musl_x64
65
65
- Linux_x64
66
66
- OSX_x64
67
- - Windows_NT_arm
67
+ # - Windows_NT_arm return this when https://github.com/dotnet/runtime/issues/1097 is fixed.
68
68
- Windows_NT_arm64
69
69
- Windows_NT_x64
70
70
- Windows_NT_x86
@@ -122,8 +122,8 @@ jobs:
122
122
#
123
123
# Formatting
124
124
#
125
- - template : /eng/platform-matrix.yml
126
- parameters :
127
- jobTemplate : format-job.yml
128
- platforms :
129
- - Linux_x64
125
+ # - template: /eng/platform-matrix.yml
126
+ # parameters:
127
+ # jobTemplate: format-job.yml
128
+ # platforms:
129
+ # - Linux_x64
Original file line number Diff line number Diff line change @@ -68,13 +68,19 @@ SET_DEFAULT_DEBUG_CHANNEL(EXCEPT);
68
68
#include < elf.h>
69
69
#include < link.h>
70
70
71
- #if defined(_X86_) || defined(_ARM_)
71
+ #if defined(_X86_) || defined(_ARM_)
72
+ #if !defined(PRIx32)
73
+ #define PRIx32 " lx"
74
+ #endif
72
75
#define PRIx PRIx32
73
76
#define PRIu PRIu32
74
77
#define PRId PRId32
75
78
#define PRIA " 08"
76
79
#define PRIxA PRIA PRIx
77
80
#elif defined(_AMD64_) || defined(_ARM64_)
81
+ #if !defined(PRIx64)
82
+ #define PRIx64 " llx"
83
+ #endif
78
84
#define PRIx PRIx64
79
85
#define PRIu PRIu64
80
86
#define PRId PRId64
You can’t perform that action at this time.
0 commit comments