Forráskód Böngészése

Rename 'libsocl.la' to 'libsocl-MAJOR.MINOR.la'.

Nathalie Furmento 13 éve
szülő
commit
cd06b99c33
3 módosított fájl, 6 hozzáadás és 6 törlés
  1. 2 2
      ChangeLog
  2. 1 1
      socl/examples/Makefile.am
  3. 3 3
      socl/src/Makefile.am

+ 2 - 2
ChangeLog

@@ -24,8 +24,8 @@ The extensions-again release
   * Increase default value for STARPU_MAXCPUS -- Maximum number of
         CPUs supported -- to 64.
   * Libtool interface versioning has been included in libraries names
-        (libstarpu-1.0.so, libstarpumpi-1.0.so and
-        libstarpufft-1.0.so)
+        (libstarpu-1.0.so, libstarpumpi-1.0.so,
+        libstarpufft-1.0.so, libsocl-1.0.so)
   * Enable by default the SOCL extension.
   * Enable by default the GCC plug-in extension.
   * Add a field named magic to struct starpu_task which is set when

+ 1 - 1
socl/examples/Makefile.am

@@ -15,7 +15,7 @@
 # See the GNU Lesser General Public License in COPYING.LGPL for more details.
 
 AM_CFLAGS = $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS)
-LIBS = $(top_builddir)/socl/src/libsocl.la
+LIBS = $(top_builddir)/socl/src/libsocl-@STARPU_EFFECTIVE_VERSION@.la
 AM_CPPFLAGS = -I$(top_srcdir)/socl/include/ 
 AM_LDFLAGS = $(STARPU_CUDA_LDFLAGS) $(STARPU_OPENCL_LDFLAGS)
 

+ 3 - 3
socl/src/Makefile.am

@@ -15,13 +15,13 @@
 # See the GNU Lesser General Public License in COPYING.LGPL for more details.
 
 AM_CFLAGS = $(GLOBAL_AM_CFLAGS) $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS)
-libsocl_la_LIBADD = $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la
+libsocl_@STARPU_EFFECTIVE_VERSION@_la_LIBADD = $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la
 AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_builddir)/include
 AM_LDFLAGS = $(STARPU_CUDA_LDFLAGS) $(STARPU_OPENCL_LDFLAGS) -no-undefined
 
 SUBDIRS =
 
-lib_LTLIBRARIES = libsocl.la
+lib_LTLIBRARIES = libsocl-@STARPU_EFFECTIVE_VERSION@.la
 
 noinst_HEADERS =				\
   command.h					\
@@ -37,7 +37,7 @@ noinst_HEADERS =				\
   task.h					\
   util.h
 
-libsocl_la_SOURCES = 						\
+libsocl_@STARPU_EFFECTIVE_VERSION@_la_SOURCES = 						\
   command.c \
   command_list.c \
   command_queue.c \