STARPU-VERSION 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # This is the tarball version, major.minor
  18. STARPU_EFFECTIVE_VERSION=1.2
  19. # Note for StarPU 1.1: we have changed ABI
  20. # Libtool interface versioning (info "(libtool) Versioning").
  21. LIBSTARPU_INTERFACE_CURRENT=2 # increment upon ABI change
  22. LIBSTARPU_INTERFACE_REVISION=0 # increment upon implementation change
  23. LIBSTARPU_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  24. LIBSTARPUFFT_INTERFACE_CURRENT=1 # increment upon ABI change
  25. LIBSTARPUFFT_INTERFACE_REVISION=0 # increment upon implementation change
  26. LIBSTARPUFFT_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  27. LIBSTARPUMPI_INTERFACE_CURRENT=2 # increment upon ABI change
  28. LIBSTARPUMPI_INTERFACE_REVISION=0 # increment upon implementation change
  29. LIBSTARPUMPI_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  30. LIBSOCL_INTERFACE_CURRENT=1 # increment upon ABI change
  31. LIBSOCL_INTERFACE_REVISION=0 # increment upon implementation change
  32. LIBSOCL_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface