diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-21 15:07:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-21 15:07:56 +0200 |
commit | 7410de8f6f7a8cfad69637f95d19567b17c527ee (patch) | |
tree | a75b1a5e9eb5b045dc6fbf53a4e0f34691a56ef5 /doc | |
parent | 36c75181aadd6c8ebaf1d420b7b339200af98076 (diff) |
Minor documentation improvement
Diffstat (limited to 'doc')
-rw-r--r-- | doc/intro.cli | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/intro.cli b/doc/intro.cli index 3fb357f..a9177d8 100644 --- a/doc/intro.cli +++ b/doc/intro.cli @@ -388,10 +388,20 @@ future.| \N|Besides the \c{coptions} (compile options) and \c{loptions} (link options), other commonly used \c{cc} module configuration variables are \c{poptions} -(preprocess options) and \c{libs} (extra libraries to link). We can also use -their \c{config.c.*} (C compilation) and \c{config.cxx.*} (C++ compilation) -variants if we only want them applied during the respective language -compilation. For example: +(preprocess options) and \c{libs} (extra libraries to link). Here is the +complete list with their rough \c{make} equivalents: + +\ +*.poptions preprocess CPPFLAGS +*.coptions compile CFLAGS/CXXFLAGS +*.loptions link LDFLAGS +*.aoptions archive ARFLAGS +*.libs extra libraries LIBS +\ + +We can also use their \c{config.c.*} (C compilation) and \c{config.cxx.*} (C++ +compilation) variants if we only want them applied during the respective +language compilation. For example: \ $ bdep init ... cc \ |