Skip to content

Use specialized small part of monetdb library as you desired

Notifications You must be signed in to change notification settings

celuk/customizable-monetdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

customizable-monetdb

Use specialized small part of monetdb library as you desired

  1. Firstly install dependencies and build monetdb:
sudo apt install bison flex
sudo apt install pkg-config
cd MonetDB
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=. ..
cmake --build . -j
cmake --build . --target install
  1. Then, write your code to test.c and build out-of-tree:
cd customizable-monetdb
mkdir build
cd build
cmake -DMONETDB_PROJECT_DIR=../MonetDB -DMONETDB_BUILD_DIR=../MonetDB/build ..
cmake --build . ## dont use -j here because of race condition
  1. You can run created test executable in your build/bin directory:
cd bin
./test

About

Use specialized small part of monetdb library as you desired

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published