STARPU-VERSION 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- sh -*-
  2. # Versioning (SONAMEs) for StarPU libraries.
  3. # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
  4. # Here are a set of rules to help you update your library version information:
  5. # Start with version information of ‘0:0:0’ for each libtool library.
  6. # Update the version information only immediately before a public
  7. # release of your software. More frequent updates are unnecessary, and
  8. # only guarantee that the current interface number gets larger faster.
  9. # - If the library source code has changed at all since the last
  10. # update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
  11. # - If any interfaces have been added, removed, or changed since the
  12. # last update, increment current, and set revision to 0.
  13. # - If any interfaces have been added since the last public release,
  14. # then increment age.
  15. # - If any interfaces have been removed or changed since the last
  16. # public release, then set age to 0. change
  17. # Note for StarPU 1.1: we have changed ABI
  18. # EFFECTIVE_VERSION must be the same as what libtool computes, i.e. one must have
  19. # libstarpu-x.so.x.y.z
  20. # Libtool interface versioning (info "(libtool) Versioning").
  21. LIBSTARPU_INTERFACE_CURRENT=1 # increment upon ABI change
  22. LIBSTARPU_INTERFACE_REVISION=0 # increment upon implementation change
  23. LIBSTARPU_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  24. LIBSTARPU_EFFECTIVE_VERSION=1.0
  25. LIBSTARPUFFT_INTERFACE_CURRENT=1 # increment upon ABI change
  26. LIBSTARPUFFT_INTERFACE_REVISION=0 # increment upon implementation change
  27. LIBSTARPUFFT_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  28. LIBSTARPUFFT_EFFECTIVE_VERSION=1.0
  29. LIBSTARPUMPI_INTERFACE_CURRENT=1 # increment upon ABI change
  30. LIBSTARPUMPI_INTERFACE_REVISION=0 # increment upon implementation change
  31. LIBSTARPUMPI_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  32. LIBSTARPUMPI_EFFECTIVE_VERSION=1.0
  33. LIBSOCL_INTERFACE_CURRENT=1 # increment upon ABI change
  34. LIBSOCL_INTERFACE_REVISION=0 # increment upon implementation change
  35. LIBSOCL_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  36. LIBSOCL_EFFECTIVE_VERSION=1.0