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 20 and Version 21 of CompileMINGW32


Ignore:
Timestamp:
Apr 8, 2015, 8:11:32 AM (10 years ago)
Author:
Jorge
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CompileMINGW32

    v20 v21  
    191191}}}
    192192
    193 The configure the makefiles for the specific configuration either Debug or Release:
     193Then configure the makefiles for the specific configuration either Debug or Release:
    194194
    195195{{{
     
    228228
    229229This will install the tolbase at the runtime location.
     230
     231== OTAN: Binaries packages ==
     232
     233The 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
     235Here we are going to escribe the compilation of one of the binaries packages: TclCore.
     236
     237In order to build the dll for the binary package first prepare the directory to build the software:
     238
     239{{{
     240cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore
     241mkdir CodeLite\Debug
     242mkdir CodeLite\Release
     243}}}
     244
     245Then configure the makefiles for the specific configuration either Debug or Release:
     246
     247{{{
     248cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore\CodeLite\Release
     249cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Release\Runtime_Base -DCMAKE_BUILD_TYPE=Release -G"CodeLite - MinGW Makefiles" ..\..
     250}}}
     251
     252To build from command line just issue the command mingw32-make from any of the directories Debug or Release:
     253
     254{{{
     255cd C:\users\toldevel\OfficialTolArchiveNetwork\TclCore\CodeLite\Release
     256mingw32-make
     257}}}