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


Ignore:
Timestamp:
Mar 26, 2015, 12:55:56 PM (10 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CompileMINGW32

    v17 v18  
    8585From this point we can run CodeLite IDE and open the workspaces generated at {{{CodeLite\Debug}}} or {{{CodeLite\Release}}}
    8686
     87==== Alternate calls ====
     88
     89When {{{cmake}}} finds {{{sh.exe}}} aborts. In this case, we can reset locally the environment variable {{{PATH}}}.
     90
     91For successive uses (in case of errors) a clean execution (for the Debug mode) can be done as:
     92{{{
     93set Path=C:\Program Files\CMake\bin;C:\RBuildTools\3.2\gcc-4.6.3\bin;C:\Program Files\R\R-3.1.2\bin;C:\Program Files\R\R-3.1.2\bin\i386;C:\Program Files\SlikSvn\bin\
     94cd c:\users\toldevel\trunk\tol\CodeLite
     95rmdir /S /Q c:\users\toldevel\trunk\tol\CodeLite\Debug
     96mkdir c:\users\toldevel\trunk\tol\CodeLite\Debug
     97cd c:\users\toldevel\trunk\tol\CodeLite\Debug
     98cmake -DTOL_EXTERNAL_DEVEL_DIR=C:/users/toldevel/TOL_DEVEL_MINGW32 -DCMAKE_BUILD_TYPE=Debug -G"CodeLite - MinGW Makefiles" c:/users/toldevel/trunk/tol
     99}}}
     100
     101Value of the environment variable {{{PATH}}} should be verified with your own local paths.
     102
     103Equivalent lines can be executed for the Release mode.
     104
    87105=== Build from command line ===
    88106