Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (26 loc) · 523 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 523 Bytes

Build Status

gp-xerces

Greenplum patched xerces-c in order to compile GPORCA

mkdir build
cd build
../configure --prefix=/usr/local
make
make install

build 32-bit

mkdir build
cd build
env CFLAGS="-m32" CXXFLAGS="-m32" ../configure --prefix=/usr/local
make
make install

debug build

mkdir build
cd build
env CFLAGS="-g" CXXFLAGS="-g" ../configure --prefix=/usr/local
make
make install