aboutsummaryrefslogtreecommitdiff
path: root/odb/odb.cxx
AgeCommit message (Collapse)AuthorFilesLines
2013-05-27Fix bug in default options file search logicBoris Kolpackov1-2/+4
2013-05-27Pass --sysroot/-isysroot when extracting profile search pathsBoris Kolpackov1-1/+14
2013-05-27Search in outer directories for default options fileBoris Kolpackov1-3/+23
2013-02-10Suppress some warningsBoris Kolpackov1-0/+2
2013-02-10Include std::string into ODB translation unitBoris Kolpackov1-0/+7
Use use it for the implicit discriminator member.
2013-02-09Update copyright yearBoris Kolpackov1-2/+2
2013-02-06Install plugin to pkgexecdir instead of bindirBoris Kolpackov1-29/+53
2013-01-10Handle -x option in default options fileBoris Kolpackov1-11/+39
This can be used, for example, to override the g++ executable path.
2012-10-29Add support for database prefixes in command line interfaceBoris Kolpackov1-48/+62
2012-10-25Static multi-database supportBoris Kolpackov1-312/+346
Add new options (--multi-database, --default-database). Generate common code to -odb.?xx files and database-specific to -odb-<db>.?xx.
2012-09-20Fix typoBoris Kolpackov1-1/+1
2012-09-12Implement --output-name, --generate-schema-only, and --at-once optionsBoris Kolpackov1-25/+61
2012-08-10Don't add standard odb prologues/epilogues when tracingBoris Kolpackov1-53/+60
2012-06-20Cosmetic changeBoris Kolpackov1-1/+0
2012-04-30Add support for -isystem -iquote -idirafter preprocessor options2.0.0Boris Kolpackov1-9/+18
2012-04-29Use traditional const placementBoris Kolpackov1-1/+1
2012-03-09Pass -std and -framework options when extracting profile pathsBoris Kolpackov1-4/+16
2012-03-09Add support for --show-sloc and --sloc-limit optionsBoris Kolpackov1-29/+151
2012-03-08Print usage/version information to STDOUT instead of STDERRBoris Kolpackov1-9/+8
2012-02-28Disable warnings about deprecated constructsBoris Kolpackov1-0/+1
If desired, those should be picked up by the user's C++ compiler, not ODB compiler.
2012-02-23Use gnu++ instead of c++ for C++ standard to enable GCC extensionsBoris Kolpackov1-2/+2
This is to be consistent with the default GCC mode which is gnu++98.
2012-02-23Add --std option that allows selecting between C++98 and C++11Boris Kolpackov1-14/+42
2012-02-22Add support for composite object idsBoris Kolpackov1-0/+20
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.
2012-01-29Update copyright yearBoris Kolpackov1-2/+2
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2012-01-20Recognize preprocessor options (-D/-U) in default options fileBoris Kolpackov1-0/+57
2012-01-20Escape equal sign in plugin option valuesBoris Kolpackov1-0/+8
2012-01-20ODB compiler implementation, traits, and types test for SQL ServerBoris Kolpackov1-2/+2
2011-10-21Implement more robust profile path parsingBoris Kolpackov1-2/+13
2011-10-21Make ODB Oracle awareConstantin Michael1-0/+1
2011-08-04Add support for value wrappersBoris Kolpackov1-0/+5
Wrapper is a class that wraps another type. Examples of wrappers are various smart pointers, holders, etc. A wrapper can be transparent or it can handle the NULL semantics. The new odb::nullable class template is a NULL wrapper that helps to add the NULL semantics to a value type. New test: common/wrapper.
2011-07-25Add support for Mac OS X DYLD_LIBRARY_PATH1.5.0Boris Kolpackov1-2/+8
2011-07-05Make compiler pgsql awareConstantin Michael1-0/+1
2011-04-27Pass through -framework option (Mac OS X)1.4.0Boris Kolpackov1-0/+15
2011-04-24Add --odb-{prologue,epilogue}-file optionsBoris Kolpackov1-1/+56
2011-04-22Extract #include directives from prologues/epiloguesBoris Kolpackov1-0/+6
This is necessary in a situation where a forward-declared object's definition is #include'd into the ODB compilation with --odb-epilogue. In this case the ODB compiler extract the directive from the epilogue's text.
2011-03-30Add support for database-specific profilesBoris Kolpackov1-37/+49
2011-03-21Infrastructure setup and schema generation for SQLiteBoris Kolpackov1-0/+1
2011-03-15Handle paths with spaces on Windows1.2.0Boris Kolpackov1-20/+21
2011-02-18Add support for default options fileBoris Kolpackov1-0/+53
Now, if configured, the ODB compiler will load the default options file (../etc/odb/default.options by default). This file can be used for installation-wide customization, such as adding extra include search paths.
2011-02-04Check runtime/compiler version compatibility during ODB compilationBoris Kolpackov1-1/+10
2011-02-01Pass profile paths to plugin; handle profile optionsBoris Kolpackov1-63/+10
2011-01-24Windows fixes for output redirectionBoris Kolpackov1-1/+8
2011-01-23Distinguish between data and diagnostics when extracting profile pathsBoris Kolpackov1-8/+50
2011-01-23Ignore subsequent requests to load the same profileBoris Kolpackov1-6/+18
2011-01-20Implement support for profilesBoris Kolpackov1-35/+286
New option: --profile/-p.
2011-01-04Copyright updateBoris Kolpackov1-2/+2
2010-12-09Cosmetic changesBoris Kolpackov1-1/+1
2010-11-29Make sure there is newline after input file contentBoris Kolpackov1-0/+4
2010-11-19Fix bug in option passing between driver and pluginBoris Kolpackov1-6/+16
This requires new option description functionality from CLI.