Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
#how-to-source-download
#how-to-source-download

Source Download

Include Page
_download_and_install_source
_download_and_install_source

Anchor
how-to-git-cheat-sheet
how-to-git-cheat-sheet

Git Cheat Sheet

Download Git Tools

Refer to Git Tools Download.

Set-Up Git Environment

Refer to GitHub Documentation

Setup ssh Keys

Refer to ssh Keys.

Fork Trafodion Source Tree

Code Block
languagebash
titleExample
trafdeveloper_fork

Clone Repository

Do the following:

Code Block
languagebash
# Move to the directory where you want to install the Trafodion source code.
cd mysource

# Clone the Trafodion source code
git clone git://git.apache.org/incubator-trafodion.git

# Register your fork as a remote branch
git remote add <your-git-id>_fork git@github.com:<your-git-id>/incubator-trafodion
Code Block
languagebash
titleExample: Clone Repository
# Move to the directory where you want to install the Trafodion source code.
cd mysource

# Clone the Trafodion source code
git clone git://git.apache.org/incubator-trafodion.git

# Register your fork as a remote branch
git remote add trafdeveloper_fork git@github.com:trafdeveloper/incubator-trafodion

Create Task Branch

Do the following:

Code Block
languagebash
# Ensure that you have the latest changes
git fetch --all

# Checkout source
git checkout -b TRAFODION-<jira-number> origin/master
Code Block
languagebash
titleExample: Create Task Branch
# Ensure that you have the latest changes
git fetch --all

# Checkout source
git checkout -b TRAFODION-1507 origin/master

Commit Changes

Do the following:

Code Block
languagebash
# Commit changes
git commit -a

# Dry-run check against main branch
git push -n <your-git-id>_fork HEAD

# Push changes to your private fork
git push <your-git-id>_fork TRAFODION-1507
Code Block
languagebash
titleExample: Commit Changes
# Commit changes
git commit -a

# Dry-run check against main branch
git push -n trafdeveloper_fork HEAD

# Push changes to your private fork
git push trafdeveloper_fork TRAFODION-1507

Create Pull Request

Do one of the following:

  • Issue a git pull-request from the git shell.
  • Generate the pull request using the GitHub web interface.
Code Block
languagebash
titleExample: Create Pull Request
git pull-request

 

Checkout Code

Do the following:

Code Block
languagebash
git checkout TRAFODION-<jira-number>

...

Anchor
how-to-build-tools-manual-install
how-to-build-tools-manual-install

Build Tools Manual Install

In the sections below, the <tool installation directory> is the directory where you want the tool to be installed.

BISON

 

  • Tested Version: 3.0
  • Downloadhttp://ftp.gnu.org/gnu/bison/bison-3.0.tar.gz (http://ftp.gnu.org/gnu/bison/)
  • Considerations: Refer to the bison INSTALL file for detailed instructions.
  • Determine Bison Version:

    Code Block
    languagebash
    which bison
    bison --version

     

    • If the version is older than 3.0, then do the following:

      Code Block
      languagebash
      tar -xzf bison-3.0.tar.gz
      cd bison-3.0
      ./configure --prefix=<tool installation directory>/bison_3_linux
      make
      make check
      make install

      The make check step may return errors like the following that can be ignored.

      Code Block
      languagebash
      make[3]: Entering directory `<mydir>/bison-3.0'
        YACC     examples/calc++/calc++-parser.stamp
        CXX      examples/calc++/examples_calc___calc__-calc++-driver.o
        LEX      examples/calc++/calc++-scanner.cc
        CXX      examples/calc++/examples_calc___calc__-calc++-scanner.o
        g++: ./examples/calc++/calc++-scanner.cc: No such file or directory
        g++: no input file

      Adjust your PATH to ensure that the correct version is chosen. Rerun the bison --version to verify.

ICU

 

  • Tested Version: 4.4.0
  • Downloadhttp://download.icu-project.org/files/icu4c/4.4/icu4c-4_4-src.tgz (http://site.icu-project.org/download)
  • Install:

    Code Block
    languagebash
    tar -xzf icu4c-4_4-src.tgz
    cd icu/source
    ./runConfigureICU Linux --with-library-suffix=Nv44 --prefix=<tool installation directory>/icu4.4/linux64
    make && make check
    make install

    The following make check errors can be ignored.

    Code Block
    languagebash
    [All tests passed successfully...]
    Elapsed Time: 00:00:12.126
    make[2]: Leaving directory `/home/centos/icu/source/test/cintltst'
    ---------------
    ALL TESTS SUMMARY:
    ok:  testdata iotest cintltst
    ===== ERRS:  intltest
    make[1]: ** [check-recursive] Error 1
    make[1]: Leaving directory `/home/centos/icu/source/test'
    make: ** [check-recursive] Error 2

LLVM

 

  • Tested Version: 3.2
  • Downloadhttp://llvm.org/releases/3.2/llvm-3.2.src.tar.gz
  • ConsiderationUdis86 must be installed on the system before LLVM is built and installed. Building LLVM takes some time to complete, be patient.
  • Install:

    Code Block
    languagebash
    # Set BASE_DIR to the top-level directory where the LLVM source will be
    # unpacked and the objects compiled.
    BASE_DIR=<your-base-dir>
    cd $BASE_DIR
    tar xzf llvm-3.2.src.tar.gz
    
    export MY_UDIS_INSTALL_DIR=<udis-installation-directory>/udis86-1.7.2
    export MY_LLVM_INSTALL_DIR=<llvm-installation-directory>/dest-llvm-3.2/
    export MY_LLVM_SRC_DIR=$BASE_DIR/llvm-3.2.src
    export MY_LLVM_OBJ_DIR=$BASE_DIR/llvm-3.2.obj/
    export LD_LIBRARY_PATH=$MY_UDIS_INSTALL_DIR/lib:$LD_LIBRARY_PATH
    export C_INCLUDE_PATH=$MY_UDIS_INSTALL_DIR/include
    export CPATH=$MY_UDIS_INSTALL_DIR/include
    
    mkdir -p $MY_LLVM_OBJ_DIR/release
    cd $MY_LLVM_OBJ_DIR/release
    
    $MY_LLVM_SRC_DIR/configure --prefix=$MY_LLVM_INSTALL_DIR/release \
    --enable-optimized --enable-jit \
    --enable-shared --enable-targets=x86,x86_64,cpp \
    --with-udis86=$MY_UDIS_INSTALL_DIR/lib \
    CFLAGS=-fgnu89-inline
    
    make libs-only
    make install-libs
    
    mkdir -p $MY_LLVM_OBJ_DIR/debug
    cd $MY_LLVM_OBJ_DIR/debug
    
    $MY_LLVM_SRC_DIR/configure --prefix=$MY_LLVM_INSTALL_DIR/debug \
    --enable-optimized --enable-jit \
    --enable-debug-runtime --enable-debug-symbols \
    --enable-shared --enable-targets=x86,x86_64,cpp \
    --with-udis86=$MY_UDIS_INSTALL_DIR/lib \
    CFLAGS=-fgnu89-inline
    
    make libs-only
    make install-libs

Maven

 

MPICH

 

  • Tested Version: 3.0.4
  • Downloadhttp://www.mpich.org/static/downloads/3.0.4/mpich-3.0.4.tar.gz (http://www.mpich.org/downloads)
  • Considerations: For more detailed instructions, see the README file that comes with the source.
  • Install:

    Code Block
    languagebash
    tar -xzf mpich-3.0.4.tar.gz
    cd mpich-3.0.4
    ./configure --prefix=<tool installation directory>/dest-mpich-3.0.4 --with-device=ch3:sock --disable-f77 --disable-fc
    make
    make check
    make install

    <tool installation directory> is the directory where you want MPICH to be installed. If you do not specify the --prefixoption, the default location is /usr/local.

Thrift

 

  • Tested Version: 0.9.0
  • Downloadhttp://archive.apache.org/dist/thrift/0.9.0/
  • Consideration: Behind a firewall, you may need the ant flags to specify a proxy.
  • Install:

    Code Block
    languagebash
    tar -xzf thrift-0.9.0.tar.gz
    cd thrift-0.9.0
    ./configure --prefix=<tool installation dir>/thrift-0.9.0 --without-qt
    make
    make install

Udis86

 

Zookeeper

 

...