falkclang

README

Jul 27th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. README
  2. ----------------
  3.  
  4. This readme somewhat explains how this pastebin account is laid out.
  5.  
  6. (Tip: Click the 'layout width' button on the right of the screen, this expands the page to span horizontally which gets rid of some text getting cut off)
  7.  
  8. Flags/tags:
  9.  
  10. [F] - Bug is fixed
  11. [G] - Builds fine with gcc
  12. (32) - Built in an i386 chroot (r224402 `make buildworld installworld distribution TARGET=i386 DESTDIR=/compat/i386`)
  13. (64) - Built in a native amd64 environment (r224402 built into a release.iso and installed)
  14.  
  15. Both the environments (i386 and amd64) use the following /etc/make.conf:
  16.  
  17. .if !defined(CC) || ${CC} == "cc"
  18. CC=clang
  19. .endif
  20. .if !defined(CXX) || ${CXX} == "c++"
  21. CXX=clang++
  22. .endif
  23. .if !defined(CPP) || ${CPP} == "cpp"
  24. CPP=clang -E
  25. .endif
  26.  
  27. NO_WERROR=
  28. WERROR=
  29. NO_FSCHG=
  30.  
  31. CPUTYPE?=native
Advertisement
Add Comment
Please, Sign In to add comment