mingwmake.bat
author Marcel Hlopko <marcel.hlopko@gmail.com>
Tue, 08 Oct 2013 19:02:01 +0200
branchdevelopment
changeset 2817 96f3e2254489
parent 2755 2158564a90d1
child 2819 76893aac6a7e
permissions -rw-r--r--
remove JavaConstantPool#ConstantPools weak array, use JavaVM registry instead JavaConstantPool>>invalidateForClass used weak array to store all existing constant pools. All constants pools are reachable from JavaVM registry -> classes -> versions -> constantPool (check JavaConstantPool>>invalidateForClass for details).

@REM -------
@REM make using mingw gnu compiler
@REM type mingwmake, and wait...
@REM do not edit - automatically generated from ProjectDefinition
@REM -------
@SET DEFINES=
@REM Kludge got Mercurial, cannot be implemented in Borland make
@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"

@pushd ..\rules
@call find_mingw.bat
@popd
make.exe -N -f bc.mak %DEFINES% %USEMINGW_ARG% %*

@echo "***********************************"
@echo "Buildung stx/libjava/libs
@echo "***********************************"
@cd libs
@call mingwmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/tools
@echo "***********************************"
@cd tools
@call mingwmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/experiments
@echo "***********************************"
@cd experiments
@call mingwmake %1 %2
@cd ..