Changeset 2002
- Timestamp:
- 09/14/10 03:23:31 (2 years ago)
- Files:
-
- trunk/docsrc/dcompiler.dd (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docsrc/dcompiler.dd
r1824 r2002 215 215 ) 216 216 217 $(LI Give execute permission to the following files:218 219 $(CONSOLE220 chmod u+x $(DMDDIR)/linux/bin/{dmd,$(DUMPOBJ),$(OBJ2ASM),rdmd}221 )222 )223 224 217 $(LI Put $(TT $(DMDDIR)/linux/bin) on your $(B PATH), 225 218 or copy the linux executables … … 247 240 ) 248 241 249 $(LI Give execute permission to the following files:250 251 $(CONSOLE252 chmod u+x $(DMDDIR)/freebsd/bin/{dmd,$(DUMPOBJ),$(OBJ2ASM),rdmd}253 )254 )255 256 242 $(LI Put $(TT $(DMDDIR)/freebsd/bin) on your $(B PATH), 257 243 or copy the FreeBSD executables … … 279 265 All the tools are command line tools, which means 280 266 they are run from a console window.) 281 282 $(LI Give execute permission to the binaries:283 284 $(CONSOLE285 chmod u+x $(DMDDIR)/osx/bin/{dmd,$(DUMPOBJ),$(OBJ2ASM),$(SHELL)$(V2 ,rdmd)}286 )287 )288 267 289 268 $(LI Verify that this works by creating $(TT hello.d) in your home directory … … 314 293 sudo cp $(DMDDIR)/osx/bin/{dmd,$(DUMPOBJ),$(OBJ2ASM),$(SHELL)$(V2 ,rdmd)} /usr/local/bin 315 294 sudo cp $(DMDDIR)/osx/bin/dmdx.conf /usr/local/bin/$(DMD_CONF) 316 sudo chmod +x /usr/local/bin/{dmd,$(DUMPOBJ),$(OBJ2ASM),$(SHELL)$(V2 ,rdmd)}317 295 ) 318 296 ) … … 1042 1020 Follow these steps:) 1043 1021 1022 $(WINDOWS 1023 $(CONSOLE 1024 cd $(DMDDIR)\src\dmd 1025 make -f win32.mak 1026 ) 1027 ) 1028 $(UNIX 1044 1029 $(CONSOLE 1045 1030 cd ~/$(DMDDIR)/src/dmd 1046 1031 make -f $(OS).mak 1047 1032 ) 1033 ) 1048 1034 1049 1035 <h2>$(LNAME2 compiling_phobos, Compiling Phobos)</h2> … … 1054 1040 $(V1 1055 1041 $(WINDOWS 1056 cd \$(DMDDIR)\src\phobos 1057 make -f $(OS).mak DMD=~\$(DMDDIR)\$(OS)\bin\dmd 1042 $(CONSOLE 1043 cd $(DMDDIR)\src\phobos 1044 make -f win32.mak DMD=$(DMDDIR)\$(OS)\bin\dmd 1045 ) 1058 1046 ) 1059 1047 $(UNIX … … 1066 1054 $(V2 1067 1055 $(WINDOWS 1068 cd \$(DMDDIR)\src\druntime 1069 make -f $(OS).mak DMD=~\$(DMDDIR)\$(OS)\bin\dmd 1056 $(CONSOLE 1057 cd $(DMDDIR)\src\druntime 1058 make -f win32.mak DMD=$(DMDDIR)\$(OS)\bin\dmd 1070 1059 cd ..\phobos 1071 make -f $(OS).mak DMD=~\$(DMDDIR)\$(OS)\bin\dmd 1060 make -f win32.mak DMD=$(DMDDIR)\$(OS)\bin\dmd 1061 ) 1072 1062 ) 1073 1063 $(UNIX
