aboutsummaryrefslogtreecommitdiff
path: root/obj/build_make.sh
diff options
context:
space:
mode:
authorAnderson Toshiyuki Sasaki <ansasaki@redhat.com>2018-05-14 15:55:06 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-08-08 20:58:23 +0200
commitefc427fdce8a2c54e60bc2ca0c9e13f8ac008ead (patch)
tree5f65f5e6a9578c246d4636ed9aa98783951a9b8d /obj/build_make.sh
parent0f64bc78a8f11d32da3e4d7e9ddd466cdbccd0b5 (diff)
downloadlibssh-efc427fdce8a2c54e60bc2ca0c9e13f8ac008ead.tar.gz
libssh-efc427fdce8a2c54e60bc2ca0c9e13f8ac008ead.tar.xz
libssh-efc427fdce8a2c54e60bc2ca0c9e13f8ac008ead.zip
cmake: Introduce symbol versioning
This adds a cmake module, FindABIMap, which looks for abimap and provides functions to generate a symbol version linker script. The module can be included using find_package(ABIMap). This also adds the option to compile with symbol versioning. The symbol list is obtained from the header files by filtering those marked with the LIBSSH_API modifier. Such symbols are used as input to generate the version script used by the linker. The version script is automatically updated as new symbols marked with LIBSSH_API are added to the header files. If any symbol is removed, the build will fail due to break in the ABI. Symbol versioning is enabled by default if abimap has been found. It is disabled in non-UNIX platforms. It can be disabled by passing "-DWITH_SYMBOL_VERSIONING=OFF" option to cmake. Pair-Programmed-With: Andreas Schneider <asn@cryptomilk.org> Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'obj/build_make.sh')
-rwxr-xr-xobj/build_make.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/obj/build_make.sh b/obj/build_make.sh
index a030ed71..7c559141 100755
--- a/obj/build_make.sh
+++ b/obj/build_make.sh
@@ -63,7 +63,7 @@ function clean_build_dir() {
function usage () {
echo "Usage: `basename $0` [--prefix /install_prefix|--build [debug|final]|--clean|--verbose|--libsuffix (32|64)|--help|--clang|--cmakedir /directory|--make
-(gmake|make)|--ccompiler (gcc|cc)|--withstaticlib|--unittesting|--clientunittesting|--withserver]"
+(gmake|make)|--ccompiler(gcc|cc)|--withstaticlib|--unittesting|--clientunittesting|--withserver|--withoutsymbolversioning]"
cleanup_and_exit
}
@@ -145,6 +145,12 @@ while test -n "$1"; do
*-withserver)
OPTIONS="${OPTIONS} -DWITH_SERVER=ON"
;;
+ *-withoutsymbolversioning)
+ OPTIONS="${OPTIONS} -DWITH_SYMBOL_VERSIONING=OFF"
+ ;;
+ *-finalrelease)
+ OPTIONS="${OPTIONS} -DWITH_FINAL=ON"
+ ;;
----noarg)
echo "$ARG does not take an argument"
cleanup_and_exit