diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-30 14:25:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-30 14:25:29 +0200 |
commit | 07780b06aa7b0fe049cc412309cf87e7fb10a0ef (patch) | |
tree | b6d0f1ee50223f5cbbc4b8c5d0dc4f69ff7f2352 /build.sh | |
parent | 259a92ac4e1ac50e4c029f54265b735f6214b49d (diff) |
Implement module configuration with an option list
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..2a39f48 --- /dev/null +++ b/build.sh @@ -0,0 +1,7 @@ +DEBUG="-g -ggdb -fno-inline" + +cd ./brep; cli --generate-file-scanner --suppress-usage --hxx-suffix "" \ + --option-prefix "" ./options.cli; cd .. + +g++ -shared $DEBUG -std=c++11 -I. -I/usr/include/apr-1 \ + -fPIC -o libbrep.so `find . -name '*.cxx'` |