~ubuntu-branches/ubuntu/raring/boost-build/raring

« back to all changes in this revision

Viewing changes to tools/cw.jam

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-08-06 00:38:31 UTC
  • mfrom: (4.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080806003831-zr65893244swds0b
Tags: 2.0-m12-2
* debian/rules: Do not install /etc/user-config.jam.
* debian/site-config.jam: New.  Install into /etc instead of empty
  example.  Closes: #493323.

* debian/control: Update homepage.  Update description.  Closes:
  #493510.  Update Standards-Version to 3.8.0; no changes.

* debian/compat: New.  Set compat level to 7.
* debian/rules: Remove DH_COMPAT setting.
* debian/control: Change debhelper build-dep to version >= 7.

* debian/control: Remove docbook-to-man, bison from build-deps.

* debian/rules: Clean up upstream source by removing debian/conffiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
feature.extend toolset : cw ;
25
25
 
 
26
toolset.add-requirements <toolset>cw,<runtime-link>shared:<threading>multi ;
 
27
 
26
28
nl = "
27
29
" ;
28
30
 
188
190
 
189
191
flags cw.link DEF_FILE <def-file> ;
190
192
 
 
193
flags cw LINKFLAGS : -search ;
191
194
flags cw LINKFLAGS <debug-symbols>on : -g ;
192
195
flags cw LINKFLAGS <user-interface>console : -subsystem console ;
193
196
flags cw LINKFLAGS <user-interface>gui : -subsystem windows ;
196
199
flags cw LINKFLAGS <user-interface>auto : -subsystem auto ;
197
200
 
198
201
flags cw LINKFLAGS <main-target-type>LIB/<link>static : -library ;
199
 
flags cw LINKFLAGS <main-target-type>LIB/<link>shared : -shared ;
200
202
 
201
203
flags cw.link USER_LINKFLAGS <linkflags> ;
202
204
flags cw.link LINKPATH <library-path> ;
238
240
 
239
241
actions link.dll bind DEF_FILE
240
242
{
241
 
   $(.LD) -o "$(<[1]:W)" -implib "$(<[2]:W)" -L"$(LINKPATH)" $(LINKFLAGS) -f"$(DEF_FILE)" $(USER_LINKFLAGS) @"@($(<[1]:W).rsp:E=$(nl)"$(>)" $(nl)$(LIBRARIES_MENTIONED_BY_FILE) $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_ST:S=.lib)" $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_SA:S=.lib)")"
 
243
   $(.LD) -shared -o "$(<[1]:W)" -implib "$(<[2]:W)" -L"$(LINKPATH)" $(LINKFLAGS) -f"$(DEF_FILE)" $(USER_LINKFLAGS) @"@($(<[1]:W).rsp:E=$(nl)"$(>)" $(nl)$(LIBRARIES_MENTIONED_BY_FILE) $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_ST:S=.lib)" $(nl)"$(LIBRARY_OPTION)$(FINDLIBS_SA:S=.lib)")"
242
244
}
243
245