You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/05/22 06:52:43 UTC

[2/3] accumulo git commit: ACCUMULO-3846 Allow CXX to be specified through the Maven build

ACCUMULO-3846 Allow CXX to be specified through the Maven build


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/85427738
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/85427738
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/85427738

Branch: refs/heads/master
Commit: 854277387c844fbd0168af9e9e775b5ea70fd36b
Parents: 76547d4
Author: Josh Elser <jo...@gmail.com>
Authored: Fri May 22 00:33:32 2015 -0400
Committer: Josh Elser <jo...@gmail.com>
Committed: Fri May 22 00:33:32 2015 -0400

----------------------------------------------------------------------
 server/native/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/85427738/server/native/pom.xml
----------------------------------------------------------------------
diff --git a/server/native/pom.xml b/server/native/pom.xml
index 16896c6..a71a6b5 100644
--- a/server/native/pom.xml
+++ b/server/native/pom.xml
@@ -27,6 +27,9 @@
   <packaging>pom</packaging>
   <name>Native Libraries</name>
   <description>C++ native libraries for improved performance in Apache Accumulo.</description>
+  <properties>
+    <CXX>g++</CXX>
+  </properties>
   <dependencies>
     <dependency>
       <groupId>org.apache.accumulo</groupId>
@@ -104,6 +107,7 @@
               <workingDirectory>${project.build.directory}/${project.artifactId}-${project.version}/${project.artifactId}-${project.version}</workingDirectory>
               <arguments>
                 <argument>test</argument>
+                <argument>CXX=${CXX}</argument>
                 <argument>OUTPUT_DIR=${project.build.directory}</argument>
               </arguments>
             </configuration>