Changes between Version 5 and Version 6 of VincentTrial3


Ignore:
Timestamp:
May 12, 2005, 4:27:08 PM (19 years ago)
Author:
garonne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VincentTrial3

    v5 v6  
    103103build_strategy with_installarea
    104104}}}
    105 The statements "build_strategy with_installarea" tells that the executable and the shared libraries will be automatically set to a installation area (i.d. the default prefix is InstallArea).
    106 
    107 
     105The statements "build_strategy with_installarea" tells that the executable and the shared libraries will be automatically set to a installation area (i.d. the default prefix is {{{ InstallArea }}}). We can now build the all stuff.
     106The entry point is the package B this is why the cmt broadcast command should be executed from the package B:
    108107{{{
    109108> cd B/v1/cmt
    110109> cmt broadcast make
    111 ... 
     110...
     111}}}
     112All librairies and executable are now built:
     113{{{
     114> ls
     115A  B  cmt  InstallArea
     116> ls InstallArea/
     117Linux-i686
     118> ls InstallArea/Linux-i686/
     119bin  lib
     120> ls InstallArea/Linux-i686/bin/
     121main.exe  main.exe.cmtref
     122> ls InstallArea/Linux-i686/lib/
     123libA.so  libA.so.cmtref  libB.so  libB.so.cmtref
     124}}} 
     125We can also setup all environnemts variables(PATH, LD_LIBRARY_PATH, ...) by running the setup script:
     126{{{
    112127> source setup.csh
     128}}}
     129Now directly running the application is possible since the application has been installed after being built in an automatic {{{ installation area }}}:
     130{{{
    113131> main.exe
    114132A