diff options
Diffstat (limited to 'bin/jemalloc-config.in')
-rw-r--r-- | bin/jemalloc-config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/jemalloc-config.in b/bin/jemalloc-config.in index b016c8d..80eca2e 100644 --- a/bin/jemalloc-config.in +++ b/bin/jemalloc-config.in @@ -18,6 +18,7 @@ Options: --cc : Print compiler used to build jemalloc. --cflags : Print compiler flags used to build jemalloc. --cppflags : Print preprocessor flags used to build jemalloc. + --cxxflags : Print C++ compiler flags used to build jemalloc. --ldflags : Print library flags used to build jemalloc. --libs : Print libraries jemalloc was linked against. EOF @@ -67,6 +68,9 @@ case "$1" in --cppflags) echo "@CPPFLAGS@" ;; +--cxxflags) + echo "@CXXFLAGS@" + ;; --ldflags) echo "@LDFLAGS@ @EXTRA_LDFLAGS@" ;; |