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.
- Timestamp:
-
Feb 13, 2015, 9:21:32 AM (10 years ago)
- Author:
-
Jorge
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v12
|
v13
|
|
32 | 32 | === TOL external libraries === |
33 | 33 | |
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}}} |
| 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.exe TOL_DEVEL_MINGW32]. This package must be unpacked, for instance under {{{c:\users\toldevel}}} |
35 | 35 | |
36 | 36 | === Rtools === |
… |
… |
|
84 | 84 | |
85 | 85 | At 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 | |
| 89 | TOL can be compiled also from command line, use the following command to build both the Debug and Release configuration: |
| 90 | |
| 91 | {{{ |
| 92 | cd c:\users\toldevel\trunk\Build\CodeLite\Debug |
| 93 | mingw32-make |
| 94 | }}} |
| 95 | |
| 96 | {{{ |
| 97 | cd c:\users\toldevel\trunk\Build\CodeLite\Release |
| 98 | mingw32-make |
| 99 | }}} |
| 100 | |
| 101 | === Runtime install === |
| 102 | |
| 103 | In 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 | {{{ |
| 106 | cd c:\users\toldevel\trunk\Build\CodeLite\Debug |
| 107 | mingw32-make install |
| 108 | }}} |
| 109 | |
| 110 | {{{ |
| 111 | cd c:\users\toldevel\trunk\Build\CodeLite\Release |
| 112 | mingw32-make install |
| 113 | }}} |
| 114 | |
| 115 | This will create a directory Runtime_Base within the corresponding configuration either Debug or Release. |