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 16 and Version 17 of CompileMINGW32


Ignore:
Timestamp:
Mar 25, 2015, 9:18:27 AM (10 years ago)
Author:
Jorge
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CompileMINGW32

    v16 v17  
    162162
    163163This will install the toltcl package and the executable tolsh.exe
     164
     165== TOLBASE ==
     166
     167In order to build tolbase first prepare the directory to build the software:
     168
     169{{{
     170cd c:\users\toldevel\trunk\tolbase
     171mkdir CodeLite\Debug
     172mkdir CodeLite\Release
     173}}}
     174
     175The configure the makefiles for the specific configuration either Debug or Release:
     176
     177{{{
     178cd c:\users\toldevel\trunk\tolbase\CodeLite\Debug
     179cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Debug\Runtime_Base -DCMAKE_BUILD_TYPE=Debug -G"CodeLite - MinGW Makefiles" ..\..
     180}}}
     181
     182{{{
     183cd c:\users\toldevel\trunk\tolbase\CodeLite\Release
     184cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Release\Runtime_Base -DCMAKE_BUILD_TYPE=Release -G"CodeLite - MinGW Makefiles" ..\..
     185}}}
     186
     187To build from command line just issue the command mingw32-make from any of the directories Debug or Release:
     188
     189{{{
     190cd c:\users\toldevel\trunk\tolbase\CodeLite\Debug
     191mingw32-make
     192}}}
     193
     194{{{
     195cd c:\users\toldevel\trunk\tolbase\CodeLite\Release
     196mingw32-make
     197}}}
     198
     199Finally if everything was ok we must install the binaries generated to the corresponding runtime directory:
     200
     201{{{
     202cd c:\users\toldevel\trunk\toltbase\CodeLite\Debug
     203mingw32-make install
     204}}}
     205
     206{{{
     207cd c:\users\toldevel\trunk\tolbase\CodeLite\Release
     208mingw32-make install
     209}}}
     210
     211This will install the tolbase at the runtime location.