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:
-
Apr 8, 2015, 8:11:32 AM (10 years ago)
- Author:
-
Jorge
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v20
|
v21
|
|
191 | 191 | }}} |
192 | 192 | |
193 | | The configure the makefiles for the specific configuration either Debug or Release: |
| 193 | Then configure the makefiles for the specific configuration either Debug or Release: |
194 | 194 | |
195 | 195 | {{{ |
… |
… |
|
228 | 228 | |
229 | 229 | This will install the tolbase at the runtime location. |
| 230 | |
| 231 | == OTAN: Binaries packages == |
| 232 | |
| 233 | The binaries packages most be compiled with MING32 in order to be compatible with the TOL compiled with MINGW32. The compilation of a binary package is based also in CMake and the instructions to compile is similar to all. |
| 234 | |
| 235 | Here we are going to escribe the compilation of one of the binaries packages: TclCore. |
| 236 | |
| 237 | In order to build the dll for the binary package first prepare the directory to build the software: |
| 238 | |
| 239 | {{{ |
| 240 | cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore |
| 241 | mkdir CodeLite\Debug |
| 242 | mkdir CodeLite\Release |
| 243 | }}} |
| 244 | |
| 245 | Then configure the makefiles for the specific configuration either Debug or Release: |
| 246 | |
| 247 | {{{ |
| 248 | cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore\CodeLite\Release |
| 249 | cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Release\Runtime_Base -DCMAKE_BUILD_TYPE=Release -G"CodeLite - MinGW Makefiles" ..\.. |
| 250 | }}} |
| 251 | |
| 252 | To build from command line just issue the command mingw32-make from any of the directories Debug or Release: |
| 253 | |
| 254 | {{{ |
| 255 | cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore\CodeLite\Release |
| 256 | mingw32-make |
| 257 | }}} |