File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ if defined ROS_ARCH (
7070
7171REM Checkpoint
7272if not defined ARCH (
73- echo Unknown build architecture
73+ echo Unknown build architecture.
7474 goto quit
7575)
7676
@@ -157,6 +157,10 @@ if "!CMAKE_GENERATOR!" == "Ninja" (
157157 echo This script defaults to Ninja. Type " configure help" for alternative options.
158158)
159159
160+ REM Display information
161+ echo Configuring a new ReactOS build on:
162+ (for /f " delims=" %%x in ('ver') do @ echo %%x ) & echo .
163+
160164REM Create directories
161165set REACTOS_OUTPUT_PATH = output-%BUILD_ENVIRONMENT% -%ARCH%
162166
@@ -188,10 +192,9 @@ if "%VS_SOLUTION%" == "1" (
188192 goto quit
189193)
190194
191- echo Preparing reactos...
192195
193196if EXIST CMakeCache.txt (
194- del CMakeCache.txt /q
197+ del /q CMakeCache.txt
195198)
196199
197200if " %BUILD_ENVIRONMENT% " == " MinGW" (
Original file line number Diff line number Diff line change @@ -40,13 +40,15 @@ while [ $# -gt 0 ]; do
4040 shift
4141done
4242
43+ echo " Configuring a new ReactOS build on:"
44+ echo $( uname -srvpio) ; echo
45+
4346if [ " $REACTOS_SOURCE_DIR " = " $PWD " ]; then
4447 echo " Creating directories in $REACTOS_OUTPUT_PATH "
4548 mkdir -p " $REACTOS_OUTPUT_PATH "
4649 cd " $REACTOS_OUTPUT_PATH "
4750fi
4851
49- echo " Preparing reactos..."
5052rm -f CMakeCache.txt host-tools/CMakeCache.txt
5153
5254cmake -G " $CMAKE_GENERATOR " -DENABLE_CCACHE:BOOL=0 -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-gcc.cmake -DARCH:STRING=$ARCH $EXTRA_ARGS $ROS_CMAKEOPTS " $REACTOS_SOURCE_DIR "
You can’t perform that action at this time.
0 commit comments