comparison buildsys/scripts/conf-nds.bat @ 632:ed19b429a152

- added explicit arm64 target, and clang tool options to Windows' configure.bat - configure.{bat,rc} now writing Makefile.config, for consistency/compatibility (e.g. configure.bat can now be used to set up env flags for a non-nmake toolchain) - simplified/decluttered Windows and Plan9 configure scripts (removal of unused/stale options, ...) - removed stale test/makepkg.sh helper
author Tassilo Philipp
date Sat, 19 Nov 2022 15:45:41 +0100
parents 3e629dc19168
children
comparison
equal deleted inserted replaced
631:e5ad8cf0aa72 632:ed19b429a152
1 @ECHO OFF 1 @ECHO OFF
2 REM /////////////////////////////////////////////////////////////////////////// 2 REM ///////////////////////////////////////////////////////////////////////////
3 REM 3 REM
4 REM Copyright (c) 2007-2009 Daniel Adler <dadler@uni-goettingen.de>, 4 REM Copyright (c) 2007-2022 Daniel Adler <dadler@uni-goettingen.de>,
5 REM Tassilo Philipp <tphilipp@potion-studios.com> 5 REM Tassilo Philipp <tphilipp@potion-studios.com>
6 REM 6 REM
7 REM Permission to use, copy, modify, and distribute this software for any 7 REM Permission to use, copy, modify, and distribute this software for any
8 REM purpose with or without fee is hereby granted, provided that the above 8 REM purpose with or without fee is hereby granted, provided that the above
9 REM copyright notice and this permission notice appear in all copies. 9 REM copyright notice and this permission notice appear in all copies.
23 GOTO END_ABORT 23 GOTO END_ABORT
24 ) 24 )
25 25
26 REM Extract devkitPro path. 26 REM Extract devkitPro path.
27 IF [%DEVKITPRO:~0,1%]==[/] ( 27 IF [%DEVKITPRO:~0,1%]==[/] (
28 ECHO DEVKITPRO_PATH=%DEVKITPRO:~1,1%:%DEVKITPRO:~2%#>>ConfigVars 28 ECHO DEVKITPRO_PATH=%DEVKITPRO:~1,1%:%DEVKITPRO:~2%#>>Makefile.config
29 ) ELSE IF [%DEVKITPRO:~1,1%]==[:] ( 29 ) ELSE IF [%DEVKITPRO:~1,1%]==[:] (
30 ECHO DEVKITPRO_PATH=%DEVKITPRO%#>>ConfigVars 30 ECHO DEVKITPRO_PATH=%DEVKITPRO%#>>Makefile.config
31 ) ELSE ( 31 ) ELSE (
32 GOTO END_ABORT 32 GOTO END_ABORT
33 ) 33 )
34 34
35 GOTO END 35 GOTO END
36 36
37 :END_ABORT 37 :END_ABORT
38 ECHO ERROR: Environment variable DEVKITPRO must be set to absolute devkitPro path. 38 ECHO ERROR: Environment variable DEVKITPRO must be set to absolute devkitPro path.
39 DEL ConfigVars 39 DEL Makefile.config
40 40
41 :END 41 :END