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

From Camino Wiki
Jump to navigation Jump to search
(→‎Comments: another one)
(→‎Comments: add that description, since we're pointing people here already :()
Line 13: Line 13:
 
mk_add_options MOZ_MAKE_FLAGS=-jN
 
mk_add_options MOZ_MAKE_FLAGS=-jN
 
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../CaminoTrunk</pre>
 
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../CaminoTrunk</pre>
 +
'''Where N = # of CPUs +1, where # of CPUs = 2 on a Core Duo processor'''<br>
 
Distribution:<br>
 
Distribution:<br>
 
<pre>. $topsrcdir/camino/config/mozconfig
 
<pre>. $topsrcdir/camino/config/mozconfig
Line 18: Line 19:
 
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>
 +
'''Where N = # of CPUs +1, where # of CPUs = 2 on a Core Duo processor'''<br>
  
 
* Make sure we include the stuff in the Development section of http://www.caminobrowser.org/development/build/
 
* Make sure we include the stuff in the Development section of http://www.caminobrowser.org/development/build/

Revision as of 00:43, 3 August 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

Where N = # of CPUs +1, where # of CPUs = 2 on a Core Duo processor
Distribution:

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

Where N = # of CPUs +1, where # of CPUs = 2 on a Core Duo processor