Advertisement
Guest User

Untitled

a guest
Dec 1st, 2010
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. Orion%
  2. Orion% uname -a
  3. Darwin Orion.local 10.5.0 Darwin Kernel Version 10.5.0: Fri Nov 5 23:20:39 PDT 2010; root:xnu-1504.9.17~1/RELEASE_I386 i386
  4. Orion%
  5. Orion% pwd
  6. /Users/aram/inferno
  7. Orion%
  8. Orion% cat mkconfig
  9. #
  10. # Set the following 4 variables. The host system is the system where
  11. # the software will be built; the target system is where it will run.
  12. # They are almost always the same.
  13.  
  14. # On Nt systems, the ROOT path MUST be of the form `drive:/path'
  15. ROOT=/Users/aram/inferno
  16.  
  17. #
  18. # Specify the flavour of Tk (std for standard builds)
  19. #
  20. TKSTYLE=std
  21.  
  22. #
  23. # Except for building kernels, SYSTARG must always be the same as SYSHOST
  24. #
  25. SYSHOST=MacOSX # build system OS type (Hp, Inferno, Irix, Linux, MacOSX, Nt, Plan9, Solaris)
  26. SYSTARG=$SYSHOST # target system OS type (Hp, Inferno, Irix, Linux, Nt, Plan9, Solaris)
  27.  
  28. #
  29. # specify the architecture of the target system - Plan 9 imports it from the
  30. # environment; for other systems it is usually just hard-coded
  31. #
  32. OBJTYPE=386 # target system object type (eg, 386, arm, mips, power, s800, sparc)
  33. OBJTYPE=$objtype
  34.  
  35. #
  36. # no changes required beyond this point
  37. #
  38. OBJDIR=$SYSTARG/$OBJTYPE
  39.  
  40. <$ROOT/mkfiles/mkhost-$SYSHOST # variables appropriate for host system
  41. <$ROOT/mkfiles/mkfile-$SYSTARG-$OBJTYPE # variables used to build target object type
  42. Orion%
  43. Orion% echo $PATH
  44. /Users/aram/inferno/MacOSX/386/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
  45. Orion%
  46. Orion% ls /Users/aram/inferno/MacOSX/386/bin
  47. 0a 2c 8a data2s ka md5sum qa va
  48. 0c 2l 8c emu kc mk qc vc
  49. 0l 5a 8l ftl kl mk.save ql vl
  50. 1a 5c acid iar kprof mkext sqz
  51. 1c 5coff asm idea ksize mkppcimage srclist
  52. 1l 5cv c2l inm kstrip ms2 styxtest
  53. 2a 5l data2c iyacc limbo ndate tc
  54. Orion%
  55. Orion% gcc -v
  56. Using built-in specs.
  57. Target: i686-apple-darwin10
  58. Configured with: /var/tmp/gcc/gcc-5664~89/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
  59. Thread model: posix
  60. gcc version 4.2.1 (Apple Inc. build 5664)
  61. Orion%
  62. Orion% mk all
  63. warning: skipping missing include file: /Users/aram/inferno/mkfiles/mkfile-MacOSX-: No such file or directory
  64. (cd lib9; mk all)
  65. warning: skipping missing include file: /Users/aram/inferno/mkfiles/mkfile-MacOSX-: No such file or directory
  66. warning: skipping missing include file: mkfile-: No such file or directory
  67. mk: don't know how to make '/Users/aram/inferno/MacOSX//include/lib9.h'
  68. /Users/aram/inferno/MacOSX//lib/lib9.a doesn't exist: assuming it will be an archive
  69. mk: for j in ... : exit status=exit(1)
  70. Orion%
  71. Orion%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement