Boost logo

Boost :

From: Richard Hadsell (hadsell_at_[hidden])
Date: 2002-03-27 18:07:48


In tools/build/mipspro-tools.jam the action that builds an archive library should use 'CC -a'
instead of 'ar' to build the library. CC knows to instantiate any template functions that the
library object files require. This is a possible fix, based on the Boost 1.27.0 release:

@@ -96,5 +96,5 @@
 
 actions updated together piecemeal mipspro-Archive-action
 {
- "$(MIPSPRO_BIN_DIRECTORY)/ar" ru$(ARFLAGS) "$(<:T)" "$(>:T)"
+ $(MIPSPRO_BIN_DIRECTORY)/CC -ar $(CFLAGS) $(C++FLAGS) -o $(<:T) $(>:T) ;
 }

-- 
Dick Hadsell			914-259-6320  Fax: 914-259-6499
Reply-to:			hadsell_at_[hidden]
Blue Sky Studios                http://www.blueskystudios.com
44 South Broadway, White Plains, NY 10601

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk