Skip to content

Commit

Permalink
Include native march flag in native-maven-plugin configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjsix committed Oct 25, 2024
1 parent 421bfc4 commit c443a50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

<properties>
<native.gc>--gc=serial</native.gc>
<native.march>-march=native</native.march>
<mongodb.port>27017</mongodb.port>
</properties>

Expand Down Expand Up @@ -549,7 +550,8 @@
<configuration>
<imageName>restheart</imageName>
<buildArgs>
<arg>${native.gc}</arg>
<buildArg>${native.gc}</buildArg>
<buildArg>${native.march}</buildArg>
</buildArgs>
</configuration>
<extensions>true</extensions>
Expand Down

0 comments on commit c443a50

Please sign in to comment.