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

From Camino Wiki
Jump to navigation Jump to search
(→‎Comments: note about Uni objdir)
Line 21: Line 21:
 
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>
 
'''Where N = # of CPUs +1, where # of CPUs = 2 on a Core Duo processor'''<br>
 +
 +
* Make sure to have a Uni example for distribution, since it requires an objdir.
  
 
* 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 21:23, 8 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
    • There are problems with objdirs and CAMINO_PROFILE_DIR--delliott 03:27, 3 August 2006 (PDT)
  • 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

  • Make sure to have a Uni example for distribution, since it requires an objdir.