diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-10-07 22:01:39 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-10-08 11:24:22 +0300 |
commit | 749179340193d4fd0985f11dba0333ebac0516ec (patch) | |
tree | a0d2671eb5641b3005b4615539d3ac993d4b0c5c /build-clang.bat | |
parent | 7011a282149b4ce3aa193001de65f975e615464b (diff) |
Suppress loading of default options files in build scripts
Diffstat (limited to 'build-clang.bat')
-rw-r--r-- | build-clang.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build-clang.bat b/build-clang.bat index 16cdae0..172c81c 100644 --- a/build-clang.bat +++ b/build-clang.bat @@ -210,6 +210,12 @@ 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 |