port to install SPOOLES library

Mark Brethen mark.brethen at gmail.com
Sat Nov 17 15:37:50 UTC 2018


I’ve patched the Make.inc file. Does it look correct?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Make.inc
Type: application/octet-stream
Size: 3092 bytes
Desc: not available
URL: <http://lists.macports.org/pipermail/macports-dev/attachments/20181117/c16b125b/attachment.obj>
-------------- next part --------------


Mark Brethen
mark.brethen at gmail.com



> On Nov 16, 2018, at 8:20 PM, Mark Brethen <mark.brethen at gmail.com> wrote:
> 
> So is this port a good candidate for the mpi port group? If not then I’ll just whitelist a compiler if the mpi variant is chosen.
> 
> 
> Mark Brethen
> mark.brethen at gmail.com
> 
> 
> 
>> On Nov 16, 2018, at 5:08 PM, Mark Brethen <mark.brethen at gmail.com> wrote:
>> 
>> From the SPOOLES documentation:
>> 
>> The SPOOLES library operates in serial, multithreaded and MPI environments. The code for these three environments is fairly segregated. The MPI directory contains all source and driver code for MPI programs. The MT directory contains all source and driver code for multithreaded programs. All other directories contain serial code.2 The MPI source code is compiled into a spoolesMPI.a library. The multithreaded source code is compiled into a spoolesMT.a library. The serial code is compiled into a spooles.a library.
>> 
>> I would like to offer the user the option of MT or MPI. The build phase would look something like this:
>> 
>> if defined(WITH_MPI)
>> 	        cd ${WRKSRC}/MPI/src ; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -f makeGlobalLib
>> 	        cd ${WRKSRC}_SHARED/MPI/src; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -f makeGlobalLib
>> 	        cd ${WRKSRC}_SHARED ; ld -Bshareable -o libspooles.so.1 -x -soname libspooles.so.1 --whole-archive spooles.a 
>> 	
>> 	else
>> 	        cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} global -f makefile
>> 	        cd ${WRKSRC}/MT/src; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -f makeGlobalLib
>> 	        cd ${WRKSRC}_SHARED; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} global -f makefile)
>> 	        cd ${WRKSRC}_SHARED/MT/src; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -f makeGlobalLib
>> 	        cd ${WRKSRC}_SHARED ; ld -Bshareable -o libspooles.so.1 -x -soname libspooles.so.1 --whole-archive spooles.a 
>> 	endif
>> 
>> There’s probably an easy way to do this using the MPI portgroup. Can you suggest some ports to look at as an example?
>> 
>> 
>> Mark Brethen
>> mark.brethen at gmail.com
>> 
>> 
>> 
> 



More information about the macports-dev mailing list