Difference between revisions of "Talk:Development:Building:Intel"

From Camino Wiki
Jump to navigation Jump to search
(→‎Comments: samples)
(→‎Comments: another one)
Line 18: Line 18:
 
ac_add_options --enable-static
 
ac_add_options --enable-static
 
mk_add_options MOZ_MAKE_FLAGS=-jN</pre>
 
mk_add_options MOZ_MAKE_FLAGS=-jN</pre>
 +
 +
* Make sure we include the stuff in the Development section of http://www.caminobrowser.org/development/build/

Revision as of 11:48, 28 July 2006

Questions

  • Is gcc select needed when doing a Uni build on Intel, or only when doing a standard 10.2.8 SDK PPC-only build on 10.4 PPC?

Comments

  • We should put objdirs in the developer build .mozconfigs
  • After explaining the options, we should offer two complete sample .mozconfigs: one for "I want to build-for-daily-use/distribute" and one for new developers

Development:

. $topsrcdir/camino/config/mozconfig
ac_add_options --disable-optimize
ac_add_options --enable-debug
mk_add_options MOZ_MAKE_FLAGS=-jN
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../CaminoTrunk

Distribution:

. $topsrcdir/camino/config/mozconfig
ac_add_options --disable-shared
ac_add_options --enable-static
mk_add_options MOZ_MAKE_FLAGS=-jN