Setting up development environment
Dag-Erling Smørgrav
des at des.no
Wed May 30 06:21:14 UTC 2007
"Daniel Molina Wegener" <dmw at unete.cl> writes:
> Is there any official way to setup a development environment for
> FreeBSD. I mean, I want to contribute with FreeBSD development. All
> I know that there is a Developer's Handbook, but what about setting a
> development environment for FreeBSD-CURRENT and -STABLE including
> from official c-mode-hooks and c++-mode-hooks for emacs to environment
> variables for cross-compiling the FreeBSD source.
Emacs setup (for both C and C++):
(defun des-knf ()
(interactive)
;; Basic indent is 8 spaces
(make-local-variable 'c-basic-offset)
(setq c-basic-offset 8)
;; Continuation lines are indented 4 spaces
(make-local-variable 'c-offsets-alist)
(c-set-offset 'arglist-cont 4)
(c-set-offset 'arglist-cont-nonempty 4)
(c-set-offset 'statement-cont 4)
;; Labels are flush to the left
(c-set-offset 'label [0])
;; Fill column
(make-local-variable 'fill-column)
(setq fill-column 74))
(add-hook 'c-mode-common-hook 'des-knf)
As for how to cross-build, read build(7).
DES
--
Dag-Erling Smørgrav - des at des.no
More information about the freebsd-hackers
mailing list