Difference between revisions of "User:Dyrcona"

From Apache OpenOffice Wiki
Jump to: navigation, search
Line 1: Line 1:
 
Hi, there! My name is [http://www.sigio.com/~jason/ Jason Stephenson]. I am new to OpenOffice.org, but I plan to help out with the native Mac OS X port.
 
Hi, there! My name is [http://www.sigio.com/~jason/ Jason Stephenson]. I am new to OpenOffice.org, but I plan to help out with the native Mac OS X port.
  
I don't have a lot of time to put stuff in this page right now, but in the coming days and weeks, I'll add some tips for those who are also new to the Mac OS X port of OpenOffice.org. These tips will mostly cover working with the DEV300 source code branch.
+
I have begun adding some of my tips for building OO.o on Mac OS X Leopard. Soon, I'll have my complete build methodology laid out.
  
 
One thing I do is put the following in a text file, so I can source it into my build environment before starting:
 
One thing I do is put the following in a text file, so I can source it into my build environment before starting:
  
 
<pre>
 
<pre>
 +
export CCACHE_DIR="$(pwd)/.ccache"
 
export CC="ccache gcc"
 
export CC="ccache gcc"
 
export CXX="ccache g++"
 
export CXX="ccache g++"
Line 11: Line 12:
 
export SYSTEM_OPENSSL=YES
 
export SYSTEM_OPENSSL=YES
 
</pre>
 
</pre>
 +
 +
I source the above in my DEV300_m0 directory so that the cache is stored there.

Revision as of 13:20, 2 March 2008

Hi, there! My name is Jason Stephenson. I am new to OpenOffice.org, but I plan to help out with the native Mac OS X port.

I have begun adding some of my tips for building OO.o on Mac OS X Leopard. Soon, I'll have my complete build methodology laid out.

One thing I do is put the following in a text file, so I can source it into my build environment before starting:

export CCACHE_DIR="$(pwd)/.ccache"
export CC="ccache gcc"
export CXX="ccache g++"
export TMP=/tmp
export SYSTEM_OPENSSL=YES

I source the above in my DEV300_m0 directory so that the cache is stored there.

Personal tools