Skip to content

Commit

Permalink
Disable compilation for GUI stuff on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmilk committed Dec 30, 2018
1 parent 8ee5500 commit a489697
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions CPP/build-arm.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.dll" >> %ERRFILE%
copy arm\7z.dll %OUTDIR%\7z.dll

cd %ROOT%\UI\FileManager
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zFM.exe" >> %ERRFILE%
copy arm\7zFM.exe %OUTDIR%\7zFM.exe
REM cd %ROOT%\UI\FileManager
REM nmake %OPTS%
REM IF %errorlevel% NEQ 0 echo "Error x64 @ 7zFM.exe" >> %ERRFILE%
REM copy arm\7zFM.exe %OUTDIR%\7zFM.exe

cd %ROOT%\UI\GUI
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7zG.exe" >> %ERRFILE%
copy arm\7zG.exe %OUTDIR%\7zG.exe
REM cd %ROOT%\UI\GUI
REM nmake %OPTS%
REM IF %errorlevel% NEQ 0 echo "Error x64 @ 7zG.exe" >> %ERRFILE%
REM copy arm\7zG.exe %OUTDIR%\7zG.exe

cd %ROOT%\UI\Explorer
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7-zip.dll" >> %ERRFILE%
copy arm\7-zip.dll %OUTDIR%\7-zip.dll

cd %ROOT%\Bundles\SFXWin
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.sfx" >> %ERRFILE%
copy arm\7z.sfx %OUTDIR%\7z.sfx
REM cd %ROOT%\Bundles\SFXWin
REM nmake %OPTS%
REM IF %errorlevel% NEQ 0 echo "Error x64 @ 7z.sfx" >> %ERRFILE%
REM copy arm\7z.sfx %OUTDIR%\7z.sfx

cd %ROOT%\Bundles\Codec_brotli
nmake %OPTS%
Expand Down Expand Up @@ -72,15 +72,15 @@ nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ flzma2-arm.dll" >> %ERRFILE%
copy arm\flzma2.dll %OUTDIR%\flzma2-arm.dll

cd %ROOT%\..\..\C\Util\7zipInstall
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ Install-arm.exe" >> %ERRFILE%
copy arm\7zipInstall.exe %OUTDIR%\Install-arm.exe
REM cd %ROOT%\..\..\C\Util\7zipInstall
REM nmake %OPTS%
REM IF %errorlevel% NEQ 0 echo "Error x64 @ Install-arm.exe" >> %ERRFILE%
REM copy arm\7zipInstall.exe %OUTDIR%\Install-arm.exe

cd %ROOT%\..\..\C\Util\7zipUninstall
nmake %OPTS%
IF %errorlevel% NEQ 0 echo "Error x64 @ Uninstall.exe" >> %ERRFILE%
copy arm\7zipUninstall.exe %OUTDIR%\Uninstall.exe
REM cd %ROOT%\..\..\C\Util\7zipUninstall
REM nmake %OPTS%
REM IF %errorlevel% NEQ 0 echo "Error x64 @ Uninstall.exe" >> %ERRFILE%
REM copy arm\7zipUninstall.exe %OUTDIR%\Uninstall.exe

cd %ROOT%\UI\Console
nmake %OPTS%
Expand Down
2 changes: 1 addition & 1 deletion cleanup.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

FOR /R .\ %%d IN (AMD64 IA64 O) DO rd /S /Q %%d 2>NUL
FOR /R .\ %%d IN (arm x64 O) DO rd /S /Q %%d 2>NUL

del "CPP\7zip\*.7z" 2>NUL
del "CPP\7zip\*.exe" 2>NUL
Expand Down

0 comments on commit a489697

Please sign in to comment.