Changeset 2189
- Timestamp:
- Dec 17, 2006, 9:54:47 PM (14 years ago)
- Location:
- to-imperative/trunk/c++
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/c++/compiler/makeall.bat
r2187 r2189 3 3 for /F %%f in (file_list) do cl %CFLAGS% /c %%f.cc 4 4 5 @echo on 5 6 link /STACK:8388608 /OUT:rfpc.exe %LFLAGS% rfpc.obj rfp_*.obj -
to-imperative/trunk/c++/config.bat
r2187 r2189 8 8 9 9 rem : Example for Platform SDK: 10 rem call "%ProgramFiles%\Microsoft Platform SDK\SetEnv" /RETAIL10 call "%ProgramFiles%\Microsoft Platform SDK for Windows Server 2003 R2\SetEnv" /RETAIL 11 11 12 12 rem : Example for Visual Studio version 6: … … 33 33 rem -4- C++ compiler options 34 34 35 set CFLAGS=/TP /EHsc /D_CRT_NONSTDC_NO_DEPRECATE /D_CRT_SECURE_NO_DEPRECATE /DWINDOWS /DRFRT_WITHOUT_MPINT / DDEBUG /I%~dp0\libp++ /I%~dp0\runtime /I%~dp0\lib /I%~dp0\include35 set CFLAGS=/TP /EHsc /D_CRT_NONSTDC_NO_DEPRECATE /D_CRT_SECURE_NO_DEPRECATE /DWINDOWS /DRFRT_WITHOUT_MPINT /I%~dp0\libp++ /I%~dp0\runtime /I%~dp0\lib /I%~dp0\include 36 36 37 37 rem : The following turns on an agressive C++ code optimization. -
to-imperative/trunk/c++/lib/makeall.bat
r2187 r2189 3 3 setlocal enableextensions enabledelayedexpansion 4 4 5 if not defined RFP_CONF_DONE call %~ p0\..\config.bat5 if not defined RFP_CONF_DONE call %~dp0\..\config.bat 6 6 7 7 if not "%1" == "-l" ( … … 9 9 cd %%d 10 10 for /F %%f in (file_list) do cl %CFLAGS% /c %%f.cc 11 cd %~ p011 cd %~dp0 12 12 ) 13 13 ) -
to-imperative/trunk/c++/makeall.bat
r2187 r2189 1 1 @setlocal 2 2 3 if not defined RFP_CONF_DONE call %~p0\config.bat3 if not defined RFP_CONF_DONE call "%~dp0\config.bat" 4 4 5 cd %~p0\libp++5 cd "%~dp0\libp++" 6 6 call makeall 7 7 @if errorlevel 1 goto end 8 8 9 cd %~p0\runtime9 cd "%~dp0\runtime" 10 10 call makeall 11 11 @if errorlevel 1 goto end 12 12 13 cd %~p0\library13 cd "%~dp0\lib" 14 14 call makeall 15 15 @if errorlevel 1 goto end 16 16 17 cd %~p0\compiler17 cd "%~dp0\compiler" 18 18 call makeall 19 19 @if errorlevel 1 goto end 20 20 21 21 :end 22 cd %~p022 cd "%~dp0"
Note: See TracChangeset
for help on using the changeset viewer.