diff options
-rw-r--r-- | build-clang.bat | 63 | ||||
-rw-r--r-- | build-mingw.bat | 63 | ||||
-rw-r--r-- | build-msvc.bat | 63 |
3 files changed, 174 insertions, 15 deletions
diff --git a/build-clang.bat b/build-clang.bat index 735eba8..a3b4dab 100644 --- a/build-clang.bat +++ b/build-clang.bat @@ -11,6 +11,7 @@ goto start echo. echo Usage: %0 [/?] [^<options^>] [^<clang++-compiler^>] echo Options: +echo --local Don't build from packages, only from local source. echo --install-dir ^<dir^> Alternative installation directory. echo --repo ^<loc^> Alternative package repository location. echo --trust ^<fp^> Repository certificate fingerprint to trust. @@ -55,6 +56,7 @@ set "cdir=build2-toolchain-%cver%" rem Parse options. rem +set "local=" set "idir=C:\build2" set "trust=" set "timeout=" @@ -66,6 +68,12 @@ if "_%~1_" == "_/?_" goto usage if "_%~1_" == "_-h_" goto usage if "_%~1_" == "_--help_" goto usage +if "_%~1_" == "_--local_" ( + set "local=true" + shift + goto options +) + if "_%~1_" == "_--install-dir_" ( if "_%~2_" == "__" ( echo error: installation directory expected after --install-dir @@ -181,9 +189,11 @@ if exist build\config.build ( goto error ) -if exist ..\%cdir%\ ( - echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it - goto error +if "_%local%_" == "__" ( + if exist ..\%cdir%\ ( + echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it + goto error + ) ) set "PATH=%idir%\bin;%PATH%" @@ -232,9 +242,52 @@ move /y build2\b.exe build2\b-boot.exe build2\b-boot --version @if errorlevel 1 goto error +cd .. + +@rem Local installation early return. +@rem +@if "_%local%_" == "__" goto stage + +build2\build2\b-boot %verbose% configure^ + config.cxx=%cxx%^ + "config.cc.coptions=-m64 -O3"^ + config.bin.lib=shared^ + config.install.root=%idir% +@if errorlevel 1 goto error + +build2\build2\b-boot %verbose% install: build2\ bpkg\ bdep\ +@if errorlevel 1 goto error + +where b +@if errorlevel 1 goto error + +where bpkg +@if errorlevel 1 goto error + +where bdep +@if errorlevel 1 goto error + +b --version +@if errorlevel 1 goto error + +bpkg --version +@if errorlevel 1 goto error + +bdep --version +@if errorlevel 1 goto error + +@echo off + +echo. +echo Toolchain installation: %idir%\bin +echo Build configuration: %owd% +echo. + +goto end + @rem Build and stage the build system and the package manager. @rem -cd .. +:stage build2\build2\b-boot %verbose% configure^ config.cxx=%cxx%^ @@ -321,7 +374,7 @@ b %verbose% uninstall: build2/ bpkg/ echo. echo Toolchain installation: %idir%\bin -echo Upgrade configuration: %cdir% +echo Build configuration: %cdir% echo. goto end diff --git a/build-mingw.bat b/build-mingw.bat index 85f8cbe..aaf0e7e 100644 --- a/build-mingw.bat +++ b/build-mingw.bat @@ -11,6 +11,7 @@ goto start echo. echo Usage: %0 [/?] [^<options^>] ^<c++-compiler^> echo Options: +echo --local Don't build from packages, only from local source. echo --install-dir ^<dir^> Alternative installation directory. echo --repo ^<loc^> Alternative package repository location. echo --trust ^<fp^> Repository certificate fingerprint to trust. @@ -54,6 +55,7 @@ set "cdir=build2-toolchain-%cver%" rem Parse options. rem +set "local=" set "idir=C:\build2" set "trust=" set "timeout=" @@ -65,6 +67,12 @@ if "_%~1_" == "_/?_" goto usage if "_%~1_" == "_-h_" goto usage if "_%~1_" == "_--help_" goto usage +if "_%~1_" == "_--local_" ( + set "local=true" + shift + goto options +) + if "_%~1_" == "_--install-dir_" ( if "_%~2_" == "__" ( echo error: installation directory expected after --install-dir @@ -190,9 +198,11 @@ if exist build\config.build ( goto error ) -if exist ..\%cdir%\ ( - echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it - goto error +if "_%local%_" == "__" ( + if exist ..\%cdir%\ ( + echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it + goto error + ) ) set "PATH=%idir%\bin;%PATH%" @@ -241,9 +251,52 @@ move /y build2\b.exe build2\b-boot.exe build2\b-boot --version @if errorlevel 1 goto error +cd .. + +@rem Local installation early return. +@rem +@if "_%local%_" == "__" goto stage + +build2\build2\b-boot %verbose% configure^ + config.cxx=%cxx%^ + config.cc.coptions=-O3^ + config.bin.lib=shared^ + config.install.root=%idir% +@if errorlevel 1 goto error + +build2\build2\b-boot %verbose% install: build2\ bpkg\ bdep\ +@if errorlevel 1 goto error + +where b +@if errorlevel 1 goto error + +where bpkg +@if errorlevel 1 goto error + +where bdep +@if errorlevel 1 goto error + +b --version +@if errorlevel 1 goto error + +bpkg --version +@if errorlevel 1 goto error + +bdep --version +@if errorlevel 1 goto error + +@echo off + +echo. +echo Toolchain installation: %idir%\bin +echo Build configuration: %owd% +echo. + +goto end + @rem Build and stage the build system and the package manager. @rem -cd .. +:stage build2\build2\b-boot %verbose% configure^ config.cxx=%cxx%^ @@ -331,7 +384,7 @@ b %verbose% uninstall: build2\ bpkg\ echo. echo Toolchain installation: %idir%\bin -echo Upgrade configuration: %cdir% +echo Build configuration: %cdir% echo. goto end diff --git a/build-msvc.bat b/build-msvc.bat index 12d48e0..28df6ea 100644 --- a/build-msvc.bat +++ b/build-msvc.bat @@ -11,6 +11,7 @@ goto start echo. echo Usage: %0 [/?] [^<options^>] [^<cl-compiler^>] echo Options: +echo --local Don't build from packages, only from local source. echo --install-dir ^<dir^> Alternative installation directory. echo --repo ^<loc^> Alternative package repository location. echo --trust ^<fp^> Repository certificate fingerprint to trust. @@ -47,6 +48,7 @@ set "cdir=build2-toolchain-%cver%" rem Parse options. rem +set "local=" set "idir=C:\build2" set "trust=" set "timeout=" @@ -57,6 +59,12 @@ if "_%~1_" == "_/?_" goto usage if "_%~1_" == "_-h_" goto usage if "_%~1_" == "_--help_" goto usage +if "_%~1_" == "_--local_" ( + set "local=true" + shift + goto options +) + if "_%~1_" == "_--install-dir_" ( if "_%~2_" == "__" ( echo error: installation directory expected after --install-dir @@ -169,9 +177,11 @@ if exist build\config.build ( goto error ) -if exist ..\%cdir%\ ( - echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it - goto error +if "_%local%_" == "__" ( + if exist ..\%cdir%\ ( + echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it + goto error + ) ) set "PATH=%idir%\bin;%PATH%" @@ -206,9 +216,52 @@ move /y build2\b.exe build2\b-boot.exe build2\b-boot --version @if errorlevel 1 goto error +cd .. + +@rem Local installation early return. +@rem +@if "_%local%_" == "__" goto stage + +build2\build2\b-boot %verbose% configure^ + config.cxx=%cxx%^ + config.cc.coptions=/O2^ + config.bin.lib=shared^ + config.install.root=%idir% +@if errorlevel 1 goto error + +build2\build2\b-boot %verbose% install: build2\ bpkg\ bdep\ +@if errorlevel 1 goto error + +where b +@if errorlevel 1 goto error + +where bpkg +@if errorlevel 1 goto error + +where bdep +@if errorlevel 1 goto error + +b --version +@if errorlevel 1 goto error + +bpkg --version +@if errorlevel 1 goto error + +bdep --version +@if errorlevel 1 goto error + +@echo off + +echo. +echo Toolchain installation: %idir%\bin +echo Build configuration: %owd% +echo. + +goto end + @rem Build and stage the build system and the package manager. @rem -cd .. +:stage build2\build2\b-boot %verbose% configure^ config.cxx=%cxx%^ @@ -294,7 +347,7 @@ b %verbose% uninstall: build2/ bpkg/ echo. echo Toolchain installation: %idir%\bin -echo Upgrade configuration: %cdir% +echo Build configuration: %cdir% echo. goto end |