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

greenplum-db/gp-xerces-archive

Repository files navigation

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