|
Boost-Commit : |
From: kbelco_at_[hidden]
Date: 2007-11-24 14:09:56
Author: noel_belcourt
Date: 2007-11-24 14:09:56 EST (Sat, 24 Nov 2007)
New Revision: 41341
URL: http://svn.boost.org/trac/boost/changeset/41341
Log:
Replace mpi wrappers with native pathscale compilers.
Fixed how we invoke f77 (pathf90 -f77).
Thanks to Alain Miniussi for reporting this.
Text files modified:
trunk/tools/build/v2/tools/pathscale.jam | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/tools/build/v2/tools/pathscale.jam
==============================================================================
--- trunk/tools/build/v2/tools/pathscale.jam (original)
+++ trunk/tools/build/v2/tools/pathscale.jam 2007-11-24 14:09:56 EST (Sat, 24 Nov 2007)
@@ -23,19 +23,19 @@
{
local condition = [ common.check-init-parameters pathscale : version $(version) ] ;
- command = [ common.get-invocation-command pathscale : mpicxx : $(command) ] ;
+ command = [ common.get-invocation-command pathscale : pathCC : $(command) ] ;
common.handle-options pathscale : $(condition) : $(command) : $(options) ;
toolset.flags pathscale.compile.fortran90 OPTIONS $(condition) :
[ feature.get-values <fflags> : $(options) ] : unchecked ;
- command_c = $(command_c[1--2]) $(command[-1]:B=mpicxx) ;
+ command_c = $(command_c[1--2]) $(command[-1]:B=pathCC) ;
toolset.flags pathscale CONFIG_C_COMMAND $(condition) : $(command_c) ;
# fortran support
- local f-command = [ common.get-invocation-command pathscale : mpif77 : $(command) ] ;
+ local f-command = [ common.get-invocation-command pathscale : pathf90 : $(command) ] ;
local command_f = $(command_f[1--2]) $(f-command[-1]:B=pathf77) ;
local command_f90 = $(command_f[1--2]) $(f-command[-1]:B=pathf90) ;
@@ -84,7 +84,7 @@
actions compile.fortran
{
- "$(CONFIG_F_COMMAND)" $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
+ "$(CONFIG_F_COMMAND)" -f77 $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
}
rule compile.fortran90 ( targets * : sources * : properties * )
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk