Updated README with OSX build instructions
1 file changed
tree: a37d852677f57df2d9e9852d676963dfdf24c1ab
  1. .jcheck/
  2. common/
  3. make/
  4. test/
  5. .gitignore
  6. .hgignore
  7. .hgtags
  8. ASSEMBLY_EXCEPTION
  9. configure
  10. getModules.bat
  11. getModules.sh
  12. LICENSE
  13. Makefile
  14. README-builds.html
  15. README.md
  16. THIRD_PARTY_README
README.md

#How JetBrains Runtime is organised ##Workspaces

github.com/JetBrains/jdk8u
github.com/JetBrains/jdk8u_corba
github.com/JetBrains/jdk8u_hotspot
github.com/JetBrains/jdk8u_jaxp
github.com/JetBrains/jdk8u_jaxws
github.com/JetBrains/jdk8u_jdk
github.com/JetBrains/jdk8u_langtools
github.com/JetBrains/jdk8u_nashorn

Usually, we do not modify any of the repositories except jdk module. Other repositories are needed for build purposes. ##Getting sources OSX, Linux:

git config --global core.autocrlf true
git clone git@github.com:JetBrains/jdk8u.git
cd jdk8u
./getModules.sh

Windows:

git config --global core.autocrlf false
git clone git@github.com:JetBrains/jdk8u.git
cd jdk8u
getModules.bat

#Configure Local Build Environment ##Linux

sudo apt-get install git zip bzip2 unzip tar curl
sudo apt-get install ccache make gcc g++ ca-certificates ca-certificates-java
sudo apt-get install libxext-dev libxrender-dev libxtst-dev libxt-dev
sudo apt-get install libasound2-dev libcups2-dev libfreetype6-dev
git clone git@github.com:JetBrains/jdk8u.git
cd jdk8u
./getModules.sh
download jdk8 from Oracle into /home/user/jdk1.8.0_102
export JAVA_HOME=/home/user/jdk1.8.0_102
sh ./configure
make

##Windows

Install:

Build Freetype:

  • Download sources
  • Execute the following script in builds\windows\vc2010
(echo ^<?xml version="1.0" encoding="utf-8"?^>
echo ^<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"^>
echo ^<PropertyGroup Label="Globals"^>
echo ^<TargetName^>freetype^</TargetName^>
echo ^<UserIncludeDirectories^>.^</UserIncludeDirectories^>
echo ^</PropertyGroup^>
echo ^<ItemDefinitionGroup^>
echo ^<ClCompile^>
echo ^<ForcedIncludeFiles^>jb_custom.h^</ForcedIncludeFiles^>
echo ^</ClCompile^>
echo ^</ItemDefinitionGroup^>
echo ^</Project^>) > freetype.user.props
(echo #ifndef __JB_CUSTOM_H__
echo #define __JB_CUSTOM_H__
echo #define FT_EXPORT^(x^) __declspec^(dllexport^) x
echo #define FT_BASE^(x^) __declspec^(dllexport^) x
echo #endif) > jb_custom.h
  • Build with VC Express for x64 or win32 target
  • Put freetype.dll, freetype.lib, freetype.exp in lib folder at the same level with include:
freetype
  include
  lib

Configure and run make in cygwin shell

  • 32 bit (use --with-msvcr-dll=/cygdrive/c/windows/SysWOW64/msvcr100.dll on 64 bit windows)
  cd /cygdrive/c/jdk8/
 ./configure  --with-target-bits=32 --with-freetype=/cygdrive/freetype/  
  make images
  • 64 bit
  cd /cygdrive/c/jdk8/
 ./configure  --with-target-bits=64 --with-freetype=/cygdrive/freetype/  
  make images

##OSX XCode

The latest XCode can be used, but you need to run make with COMPILER_WARNINGS_FATAL=false

Freetype

cd freetype
./configure
./make
mkdir lib
cp objs/.libs/libfreetype.dylib lib/

Configure and build jdk

export MACOSX_DEPLOYMENT_TARGET=10.8
cd /path_to_jdk8/
bash configure --with-xcode-path=/Applications/Xcode4/Xcode4.app --with-freetype=/path_to_freetype
make images

or

make COMPILER_WARNINGS_FATAL=false images

for the latest XCode