huangtianhua created SPARK-34009:
------------------------------------

             Summary: Activate profile 'aarch64' based on OS
                 Key: SPARK-34009
                 URL: https://issues.apache.org/jira/browse/SPARK-34009
             Project: Spark
          Issue Type: Improvement
          Components: Build
    Affects Versions: 3.0.2
            Reporter: huangtianhua


Now we activate profile 'aarch64' by parameter '-Paarch' to build spark on 
aarch64: https://github.com/apache/spark/blob/master/pom.xml#L3369-L3374

There is another way to activate maven profile based on OS settings 
automatically, like:
    <profile>
      <id>aarch64</id>
      <properties>
        <leveldbjni.group>org.openlabtesting.leveldbjni</leveldbjni.group>
      </properties>
      <activation>
        <os>
          <family>linux</family>
          <arch>aarch64</arch>
        </os>
      </activation>
    </profile>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to