aboutsummaryrefslogtreecommitdiff
path: root/elf/dl-deps.c
AgeCommit message (Expand)AuthorFilesLines
1997-02-03update from main archive 970202cvs/libc-970203Ulrich Drepper1-26/+47
1997-01-06update from main archive 960105cvs/libc-970107cvs/libc-970106Ulrich Drepper1-18/+56
1996-11-27update from main archive 961126cvs/libc-961127Ulrich Drepper1-1/+2
1996-11-20update from main archive 961119cvs/libc-961126cvs/libc-961125cvs/libc-961124cvs/libc-961123cvs/libc-961122cvs/libc-961120Ulrich Drepper1-4/+27
1996-11-17update from main archive 961116cvs/libc-961119cvs/libc-961118cvs/libc-961117Ulrich Drepper1-17/+17
1996-10-21update from main archive 961020cvs/libc-961021Ulrich Drepper1-2/+3
1996-07-14* elf/dl-deps.c (_dl_map_object_deps): Start TAILP at last preload.Roland McGrath1-2/+5
1996-07-14Sun Jul 14 01:51:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>cvs/libc-960714Roland McGrath1-7/+16
1996-06-16* elf/dl-deps.c (_dl_map_object_deps): Set MAP's mark bit before loop.Roland McGrath1-5/+6
1996-06-10* Makerules ($(common-objpfx)libc.so): Depend on $(elfobjdir)/ld.so.cvs/libc-960611Roland McGrath1-1/+3
1996-06-10Mon Jun 10 06:14:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1-26/+1
1996-06-04Tue Jun 4 18:57:57 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1-17/+48
1996-06-04Tue Jun 4 02:25:44 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>Roland McGrath1-0/+93
> the argument, skip is present, only the paths and the @REM test and set of environment settings are performed. @REM ############################################################## @REM # You should not have to modify anything below this line @REM # @echo off @REM @REM Set the WORKSPACE to the current working directory @REM pushd . cd %~dp0 set WORKSPACE=%CD% @if /I "%1"=="-h" goto Usage @if /I "%1"=="-help" goto Usage @if /I "%1"=="--help" goto Usage @if /I "%1"=="/h" goto Usage @if /I "%1"=="/?" goto Usage @if /I "%1"=="/help" goto Usage @if /I not "%1"=="--nt32" goto no_nt32 @REM Flag, --nt32 is set @REM The Nt32 Emluation Platform requires Microsoft Libraries @REM and headers to interface with Windows. if not defined VCINSTALLDIR ( if defined VS71COMNTOOLS ( call "%VS71COMNTOOLS%\vsvars32.bat" ) else ( if defined VS80COMNTOOLS ( call "%VS80COMNTOOLS%\vsvars32.bat" ) else ( echo. echo !!! WARNING !!! Cannot find Visual Studio !!! echo. ) ) ) shift :no_nt32 @if /I "%1"=="NewBuild" shift @if not defined EDK_TOOLS_PATH set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools @IF NOT EXIST "%EDK_TOOLS_PATH%\toolsetup.bat" goto BadBaseTools @call %EDK_TOOLS_PATH%\toolsetup.bat %* @if /I "%1"=="Reconfig" shift @goto check_cygwin :BadBaseTools @REM @REM Need the BaseTools Package in order to build @REM echo. echo !!! ERROR !!! The BaseTools Package was not found !!! echo. echo Set the system environment variable, EDK_TOOLS_PATH to the BaseTools, echo For example, echo set EDK_TOOLS_PATH=C:\MyTools\BaseTools echo The setup script, toolsetup.bat must reside in this folder. echo. @goto end :check_cygwin @if exist c:\cygwin ( @set CYGWIN_HOME=c:\cygwin ) else ( @echo. @echo !!! WARNING !!! No CYGWIN_HOME set, gcc build may not be used !!! @echo. ) @if NOT "%1"=="" goto Usage @goto end :Usage @echo. @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32] [Reconfig]" @echo --nt32 Call vsvars32.bat for NT32 platform build. @echo. @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt. @echo. @echo Note that target.template, tools_def.template and build_rules.template @echo will be only copied to target.txt, tools_def.txt and build_rule.txt @echo respectively if they do not exist. Using option [Reconfig] to force the copy. @echo. @goto end :end @popd @echo on