From 5caacdf286eaaa95bf11d272d83ba808d9c44b69 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 28 Oct 2020 10:15:25 +0300 Subject: Install exact package versions and make bpkg and bdep optional in build scripts --- build-clang.bat | 398 -------------------------------------------------------- 1 file changed, 398 deletions(-) delete mode 100644 build-clang.bat (limited to 'build-clang.bat') diff --git a/build-clang.bat b/build-clang.bat deleted file mode 100644 index 172c81c..0000000 --- a/build-clang.bat +++ /dev/null @@ -1,398 +0,0 @@ -@echo off - -rem file : build-clang.bat -rem license : MIT; see accompanying LICENSE file - -setlocal EnableDelayedExpansion -goto start - -:usage -echo. -echo Usage: %0 [/?] [^] [^] -echo Options: -echo --local Don't build from packages, only from local source. -echo --install-dir ^ Alternative installation directory. -echo --repo ^ Alternative package repository location. -echo --trust ^ Repository certificate fingerprint to trust. -echo --timeout ^ Network operations timeout in seconds. -echo --make ^ Bootstrap using GNU make instead of batch file. -echo --verbose ^ Diagnostics verbosity level between 0 and 6. -echo. -echo By default the batch file will use clang++.exe as the C++ compiler and -echo install into C:\build2. It also expects to find the base utilities in the -echo bin\ subdirectory of the installation directory ^(C:\build2\bin\ by -echo default^). -echo. -echo The --trust option recognizes two special values: 'yes' ^(trust everything^) -echo and 'no' (trust nothing). -echo. -echo The --make option can be used to bootstrap using GNU make. The first -echo --make value should specify the make executable optionally followed by -echo additional make options, for example: -echo. -echo %0 --make mingw32-make --make -j8 -echo. -echo See the BOOTSTRAP-WINDOWS-CLANG file for details. -echo. -goto end - -:start - -set "owd=%CD%" - -rem Package repository URL (or path). -rem -if "_%BUILD2_REPO%_" == "__" ( - set "BUILD2_REPO=https://stage.build2.org/1" -rem set "BUILD2_REPO=https://pkg.cppget.org/1/queue/alpha" -rem set "BUILD2_REPO=https://pkg.cppget.org/1/alpha" -) - -rem The bpkg configuration directory. -rem -set "cver=0.14-a.0" -set "cdir=build2-toolchain-%cver%" - -rem Parse options. -rem -set "local=" -set "idir=C:\build2" -set "trust=" -set "timeout=" -set "make=" -set "verbose=" - -:options -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 - goto error - ) - set "idir=%~2" - shift - shift - goto options -) - -if "_%~1_" == "_--trust_" ( - if "_%~2_" == "__" ( - echo error: certificate fingerprint expected after --trust - goto error - ) - set "trust=%~2" - shift - shift - goto options -) - -if "_%~1_" == "_--repo_" ( - if "_%~2_" == "__" ( - echo error: repository location expected after --repo - goto error - ) - set "BUILD2_REPO=%~2" - shift - shift - goto options -) - -if "_%~1_" == "_--timeout_" ( - if "_%~2_" == "__" ( - echo error: value in seconds expected after --timeout - goto error - ) - set "timeout=%~2" - shift - shift - goto options -) - -if "_%~1_" == "_--make_" ( - if "_%~2_" == "__" ( - echo error: argument expected after --make - goto error - ) - set "make=%make% %~2" - shift - shift - goto options -) - -if "_%~1_" == "_--verbose_" ( - if "_%~2_" == "__" ( - echo error: diagnostics level between 0 and 6 expected after --verbose - goto error - ) - set "verbose=%~2" - shift - shift - goto options -) - -if "_%~1_" == "_--_" shift - -rem Validate options and arguments. -rem - -rem Compiler. -rem -if "_%1_" == "__" ( - set "cxx=clang++" -) else ( - set "cxx=%1" -) - -rem Convert a relative path to an absolute. -rem -for /F "delims=|" %%D in ("%idir%") do set "idir=%%~dpnxD" - -rem Certificate to trust. -rem -if not "_%trust%_" == "__" ( - if "_%trust%_" == "_yes_" ( - set "trust=--trust-yes" - ) else ( - if "_%trust%_" == "_no_" ( - set "trust=--trust-no" - ) else ( - set "trust=--trust %trust%" - ) - ) -) - -rem Network timeout. -rem -if not "_%timeout%_" == "__" ( - set "timeout=--fetch-timeout %timeout%" -) - -rem Diagnostics verbosity. -rem -if not "_%verbose%_" == "__" ( - set "verbose=--verbose %verbose%" -) - -if not exist %idir%\bin\ ( - echo error: %idir%\bin\ does not exist - goto error -) - -if exist build\config.build ( - echo error: current directory already configured, start with clean source - goto error -) - -if "_%local%_" == "__" ( - if exist ..\%cdir%\ ( - echo error: ..\%cdir%\ bpkg configuration directory already exists, remove it - goto error - ) -) - -set "PATH=%idir%\bin;%PATH%" - -rem Show the steps we are performing. -rem -@echo on - -@rem Verify the compiler works. -@rem -%cxx% --version -@if errorlevel 1 goto error - -@rem Suppress loading of default options files. -@rem -set "BUILD2_DEF_OPT=0" -set "BPKG_DEF_OPT=0" -set "BDEP_DEF_OPT=0" - -@rem Bootstrap. -@rem -cd build2 - -@if "_%make%_" == "__" ( - goto batchfile -) else ( - goto makefile -) - -:batchfile -@rem Execute in a separate cmd.exe to preserve the echo mode. -@rem -cmd /C bootstrap-clang.bat %cxx% -@if errorlevel 1 goto error -@goto endfile - -:makefile -%make% -f bootstrap.gmake CXX=%cxx% -@if errorlevel 1 goto error -@goto endfile - -:endfile -build2\b-boot --version -@if errorlevel 1 goto error - -build2\b-boot %verbose% config.cxx=%cxx% config.cc.coptions=-m64 config.bin.lib=static build2\exe{b} -@if errorlevel 1 goto error - -move /y build2\b.exe build2\b-boot.exe -@if errorlevel 1 goto error - -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 -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 -:stage - -build2\build2\b-boot %verbose% configure^ - config.cxx=%cxx%^ - config.cc.coptions=-m64^ - config.bin.lib=shared^ - config.bin.suffix=-stage^ - config.install.root=%idir%^ - config.install.data_root=root\stage -@if errorlevel 1 goto error - -build2\build2\b-boot %verbose% install: build2\ bpkg\ -@if errorlevel 1 goto error - -where b-stage -@if errorlevel 1 goto error - -where bpkg-stage -@if errorlevel 1 goto error - -b-stage --version -@if errorlevel 1 goto error - -bpkg-stage --version -@if errorlevel 1 goto error - -@rem Build the entire toolchain from packages. -@rem -cd .. - -md %cdir% -@if errorlevel 1 goto error - -cd %cdir% - -@rem Save full path for later. -@rem -@set "cdir=%CD%" - -bpkg-stage %verbose% create^ - cc^ - config.cxx=%cxx%^ - "config.cc.coptions=-m64 -O2"^ - config.bin.lib=shared^ - config.install.root=%idir% -@if errorlevel 1 goto error - -bpkg-stage %verbose% add %BUILD2_REPO% -@if errorlevel 1 goto error - -bpkg-stage %verbose% %timeout% %trust% fetch -@if errorlevel 1 goto error - -bpkg-stage %verbose% %timeout% build --for install --yes --plan= build2 bpkg bdep -@if errorlevel 1 goto error - -bpkg-stage %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 - -@rem Clean up stage. -@rem -cd %owd% -b %verbose% uninstall: build2/ bpkg/ -@if errorlevel 1 goto error - -@echo off - -echo. -echo Toolchain installation: %idir%\bin -echo Build configuration: %cdir% -echo. - -goto end - -:error -@echo off -cd %owd% -endlocal -exit /b 1 - -:end -endlocal -- cgit v1.1