upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
887 B
32 lines
887 B
@echo off
|
|
REM Setup for compiling with Borland C++ 4.5 in 16 bit mode.
|
|
|
|
if .%CHECKED%==.1 goto checked_build
|
|
SET LIB=%SCITECH_LIB%\LIB\RELEASE\DOS16\BC4;%BC4_PATH%\LIB;.
|
|
echo Release build enabled.
|
|
goto setvars
|
|
|
|
:checked_build
|
|
SET LIB=%SCITECH_LIB%\LIB\DEBUG\DOS16\BC4;%BC4_PATH%\LIB;.
|
|
echo Checked debug build enabled.
|
|
goto setvars
|
|
|
|
:setvars
|
|
SET INCLUDE=INCLUDE;%SCITECH%\INCLUDE;%PRIVATE%\INCLUDE;%BC4_PATH%\INCLUDE
|
|
SET MAKESTARTUP=%SCITECH%\MAKEDEFS\BC16.MK
|
|
SET USE_DPMI16=
|
|
SET USE_WIN16=
|
|
SET USE_WIN32=
|
|
SET USE_VXD=
|
|
SET USE_BC5=
|
|
SET WIN32_GUI=
|
|
SET USE_SNAP=
|
|
SET BC_LIBBASE=BC4
|
|
PATH %SCITECH_BIN%;%BC4_PATH%\BIN;%DEFPATH%%BC_CD_PATH%
|
|
|
|
REM: Create Borland compile/link configuration scripts
|
|
echo -I%INCLUDE% > %BC4_PATH%\BIN\turboc.cfg
|
|
echo -L%LIB% >> %BC4_PATH%\BIN\turboc.cfg
|
|
echo -L%LIB% > %BC4_PATH%\BIN\tlink.cfg
|
|
|
|
echo Borland C++ 4.5 16 bit DOS compilation configuration set up.
|
|
|