← Back to team overview

yade-dev team mailing list archive

[svn] r1656 - in trunk/pkg/common: . Container

 

Author: eudoxos
Date: 2009-02-04 22:44:42 +0100 (Wed, 04 Feb 2009)
New Revision: 1656

Added:
   trunk/pkg/common/Container/dummy.cpp
Modified:
   trunk/pkg/common/SConscript
Log:
1. Tentative fix for newer scons, which links empty files (dummy plugins) with plain gcc and doesn't find default c++ libs to link with. 


Added: trunk/pkg/common/Container/dummy.cpp
===================================================================

Modified: trunk/pkg/common/SConscript
===================================================================
--- trunk/pkg/common/SConscript	2009-02-04 20:47:43 UTC (rev 1655)
+++ trunk/pkg/common/SConscript	2009-02-04 21:44:42 UTC (rev 1656)
@@ -22,9 +22,9 @@
 #	env.SharedLibrary('InteractionVecSet',['Container/InteractionVecSet.cpp']),
 #	env.SharedLibrary('PhysicalActionVectorVector',['Container/PhysicalActionVectorVector.cpp']),
 ## still permit linking with that
-	env.SharedLibrary('BodyRedirectionVector',[]),
-	env.SharedLibrary('InteractionVecSet',[]),
-	env.SharedLibrary('PhysicalActionVectorVector',[]),
+	env.SharedLibrary('BodyRedirectionVector',[],LIBS=[]),
+	env.SharedLibrary('InteractionVecSet',[],LIBS=[]),
+	env.SharedLibrary('PhysicalActionVectorVector',[],LIBS=[]),
 
 	env.SharedLibrary('AABB',['DataClass/BoundingVolume/AABB.cpp']),
 	env.SharedLibrary('BoundingSphere',['DataClass/BoundingVolume/BoundingSphere.cpp']),