close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 12 and Version 13 of CompileMINGW32


Ignore:
Timestamp:
Feb 13, 2015, 9:21:32 AM (10 years ago)
Author:
Jorge
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CompileMINGW32

    v12 v13  
    3232=== TOL external libraries ===
    3333
    34 TOL depends on a set of external libraries provided by the open source community. All this libraries has been compiled with Rtool and packaged in a bundle. This package can be downloaded from [http://packages.tol-project.org/win32/development/TOL_DEVEL_MINGW32.rar TOL_DEVEL_MINGW32]. This package must be unpacked, for instance under {{{c:\users\toldevel}}}
     34TOL depends on a set of external libraries provided by the open source community. All this libraries has been compiled with Rtool and packaged in a bundle. This package can be downloaded from [http://packages.tol-project.org/win32/development/TOL_DEVEL_MINGW32.exe TOL_DEVEL_MINGW32]. This package must be unpacked, for instance under {{{c:\users\toldevel}}}
    3535
    3636=== Rtools ===
     
    8484
    8585At dis point we can run CodeLite IDE and open any of the workspaces generated at {{{Build\CodeLite\Debug}}} or {{{Build\CodeLite\Release}}}
     86
     87=== Build from command line ===
     88
     89TOL can be compiled also from command line, use the following command to build both the Debug and Release configuration:
     90
     91{{{
     92cd c:\users\toldevel\trunk\Build\CodeLite\Debug
     93mingw32-make
     94}}}
     95
     96{{{
     97cd c:\users\toldevel\trunk\Build\CodeLite\Release
     98mingw32-make
     99}}}
     100
     101=== Runtime install ===
     102
     103In order to test the result of the compilation we must prepare a runtime enviroment with the needed programs and dll libraries. For that we have the following commands:
     104
     105{{{
     106cd c:\users\toldevel\trunk\Build\CodeLite\Debug
     107mingw32-make install
     108}}}
     109
     110{{{
     111cd c:\users\toldevel\trunk\Build\CodeLite\Release
     112mingw32-make install
     113}}}
     114
     115This will create a directory Runtime_Base within the corresponding configuration either Debug or Release.