[Arakhnę-Dev] [22] Bug fix: in g++ compilation from Maven, the standard C++ library is not implicitely bind. |
[ Thread Index |
Date Index
| More arakhne.org/dev Archives
]
- To: dev@xxxxxxxxxxx
- Subject: [Arakhnę-Dev] [22] Bug fix: in g++ compilation from Maven, the standard C++ library is not implicitely bind.
- From: subversion@xxxxxxxxxxxxx
- Date: Wed, 10 Dec 2008 14:30:47 +0100
Revision: 22
Author: galland
Date: 2008-12-10 14:30:47 +0100 (Wed, 10 Dec 2008)
Log Message:
-----------
Bug fix: in g++ compilation from Maven, the standard C++ library is not implicitely bind. It causes binding error when the generated so file is loaded.
Modified Paths:
--------------
trunk/arakhneVmutils/native/josuuid/linux/pom.xml
Modified: trunk/arakhneVmutils/native/josuuid/linux/pom.xml
===================================================================
--- trunk/arakhneVmutils/native/josuuid/linux/pom.xml 2008-12-10 13:29:39 UTC (rev 21)
+++ trunk/arakhneVmutils/native/josuuid/linux/pom.xml 2008-12-10 13:30:47 UTC (rev 22)
@@ -55,7 +55,7 @@
</sources>
<linkerStartOptions>
- <linkerStartOption>-shared</linkerStartOption>
+ <linkerStartOption>-shared -lstdc++</linkerStartOption>
</linkerStartOptions>
</configuration>