Skip to content

Commit 23b6f25

Browse files
committed
1 parent 84a59e4 commit 23b6f25

File tree

1 file changed

+98
-18
lines changed

1 file changed

+98
-18
lines changed

docs/modules/reference/pages/assemble/native-image.adoc

Lines changed: 98 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -98,21 +98,35 @@ include::partial$matrix/yaml/matrix.adoc[indent=6]
9898
- '-f'
9999
100100
# icon:dot-circle[]
101-
linux:
101+
linuxX86:
102102
# A list of arguments.
103103
# icon:dot-circle[]
104104
args:
105105
- '--static'
106106
107107
# icon:dot-circle[]
108-
windows:
108+
windowsX86:
109109
# A list of arguments.
110110
# icon:dot-circle[]
111111
args:
112112
- '--foo'
113113
114114
# icon:dot-circle[]
115-
osx:
115+
macosX86:
116+
# A list of arguments.
117+
# icon:dot-circle[]
118+
args:
119+
- '--bar'
120+
121+
# icon:dot-circle[]
122+
linuxArm:
123+
# A list of arguments.
124+
# icon:dot-circle[]
125+
args:
126+
- '--static'
127+
128+
# icon:dot-circle[]
129+
macosArm:
116130
# A list of arguments.
117131
# icon:dot-circle[]
118132
args:
@@ -198,19 +212,31 @@ include::partial$matrix/toml/matrix.adoc[]
198212
args = ["-f]
199213
200214
# icon:dot-circle[]
201-
[assemble.{assembler_id}.app.linux]
215+
[assemble.{assembler_id}.app.linuxX86]
202216
# A list of arguments.
203217
# icon:dot-circle[]
204218
args = ["--static]
205219
206220
# icon:dot-circle[]
207-
[assemble.{assembler_id}.app.windows]
221+
[assemble.{assembler_id}.app.windowsX86]
208222
# A list of arguments.
209223
# icon:dot-circle[]
210224
args = ["--foo]
211225
212226
# icon:dot-circle[]
213-
[assemble.{assembler_id}.app.osx]
227+
[assemble.{assembler_id}.app.macosX86]
228+
# A list of arguments.
229+
# icon:dot-circle[]
230+
args = ["--bar]
231+
232+
# icon:dot-circle[]
233+
[assemble.{assembler_id}.app.linuxArm]
234+
# A list of arguments.
235+
# icon:dot-circle[]
236+
args = ["--static]
237+
238+
# icon:dot-circle[]
239+
[assemble.{assembler_id}.app.macosArm]
214240
# A list of arguments.
215241
# icon:dot-circle[]
216242
args = ["--bar]
@@ -309,21 +335,35 @@ include::partial$matrix/json/matrix.adoc[indent=8]
309335
},
310336
311337
// icon:dot-circle[]
312-
"linux": {
338+
"linuxX86": {
313339
// A list of arguments.
314340
// icon:dot-circle[]
315341
"args": ["--static"]
316342
},
317343
318344
// icon:dot-circle[]
319-
"windows": {
345+
"windowsX86": {
320346
// A list of arguments.
321347
// icon:dot-circle[]
322348
"args": ["--foo"]
323349
},
324350
325351
// icon:dot-circle[]
326-
"osx": {
352+
"macosX86": {
353+
// A list of arguments.
354+
// icon:dot-circle[]
355+
"args": ["--bar"]
356+
},
357+
358+
// icon:dot-circle[]
359+
"linuxArm": {
360+
// A list of arguments.
361+
// icon:dot-circle[]
362+
"args": ["--static"]
363+
},
364+
365+
// icon:dot-circle[]
366+
"macosArm": {
327367
// A list of arguments.
328368
// icon:dot-circle[]
329369
"args": ["--bar"]
@@ -452,41 +492,67 @@ include::partial$matrix/maven/matrix.adoc[indent=8]
452492
<!--
453493
icon:dot-circle[]
454494
--->
455-
<linux>
495+
<linuxX86>
456496
<!--
457497
A list of arguments.
458498
icon:dot-circle[]
459499
-->
460500
<args>
461501
<arg>--static</arg>
462502
</args>
463-
</linux>
503+
</linuxX86>
464504
465505
<!--
466506
icon:dot-circle[]
467507
--->
468-
<windows>
508+
<windowsX86>
469509
<!--
470510
A list of arguments.
471511
icon:dot-circle[]
472512
-->
473513
<args>
474514
<arg>--foo</arg>
475515
</args>
476-
</windows>
516+
</windowsX86>
477517
478518
<!--
479519
icon:dot-circle[]
480520
--->
481-
<osx>
521+
<macosX86>
482522
<!--
483523
A list of arguments.
484524
icon:dot-circle[]
485525
-->
486526
<args>
487527
<arg>--bar</arg>
488528
</args>
489-
</osx>
529+
</macosX86>
530+
531+
<!--
532+
icon:dot-circle[]
533+
--->
534+
<linuxArm>
535+
<!--
536+
A list of arguments.
537+
icon:dot-circle[]
538+
-->
539+
<args>
540+
<arg>--static</arg>
541+
</args>
542+
</linuxArm>
543+
544+
<!--
545+
icon:dot-circle[]
546+
--->
547+
<macosArm>
548+
<!--
549+
A list of arguments.
550+
icon:dot-circle[]
551+
-->
552+
<args>
553+
<arg>--bar</arg>
554+
</args>
555+
</macosArm>
490556
491557
include::partial$assemble/maven/common-archive-options.adoc[]
492558
@@ -577,21 +643,35 @@ include::partial$matrix/gradle/matrix.adoc[indent=8]
577643
}
578644
579645
// icon:dot-circle[]
580-
linux {
646+
linuxX86 {
581647
// A list of arguments.
582648
// icon:dot-circle[]
583649
arg('--static')
584650
}
585651
586652
// icon:dot-circle[]
587-
windows {
653+
windowsX86 {
588654
// A list of arguments.
589655
// icon:dot-circle[]
590656
arg('--foo')
591657
}
592658
593659
// icon:dot-circle[]
594-
osx {
660+
macosX86 {
661+
// A list of arguments.
662+
// icon:dot-circle[]
663+
arg('--bar')
664+
}
665+
666+
// icon:dot-circle[]
667+
linuxArm {
668+
// A list of arguments.
669+
// icon:dot-circle[]
670+
arg('--static')
671+
}
672+
673+
// icon:dot-circle[]
674+
macosArm {
595675
// A list of arguments.
596676
// icon:dot-circle[]
597677
arg('--bar')

0 commit comments

Comments
 (0)