Browse Source

Rename `libstarpu-1.0.pc' to `starpu-1.0.pc'.

Ludovic Courtès 13 years ago
parent
commit
5c10219394
6 changed files with 11 additions and 11 deletions
  1. 1 1
      Makefile.am
  2. 1 1
      configure.ac
  3. 6 6
      doc/chapters/basic-examples.texi
  4. 1 1
      doc/chapters/c-extensions.texi
  5. 2 2
      doc/chapters/using.texi
  6. 0 0
      starpu-1.0.pc.in

+ 1 - 1
Makefile.am

@@ -43,7 +43,7 @@ SUBDIRS += starpufft
 endif
 
 pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = libstarpu.pc libstarpu-1.0.pc
+pkgconfig_DATA = libstarpu.pc starpu-1.0.pc
 if USE_MPI
 pkgconfig_DATA += libstarpumpi.pc libstarpumpi-1.0.pc
 endif

+ 1 - 1
configure.ac

@@ -1545,7 +1545,7 @@ AC_OUTPUT([
 	socl/src/Makefile
 	socl/examples/Makefile
 	libstarpu.pc
-	libstarpu-1.0.pc
+	starpu-1.0.pc
 	libstarpumpi.pc
 	libstarpumpi-1.0.pc
 	starpufft/Makefile

+ 6 - 6
doc/chapters/basic-examples.texi

@@ -32,8 +32,8 @@ options must be given to the compiler and to the linker:
 
 @cartouche
 @example
-CFLAGS          +=      $$(pkg-config --cflags libstarpu-1.0)
-LDFLAGS         +=      $$(pkg-config --libs libstarpu-1.0)
+CFLAGS          +=      $$(pkg-config --cflags starpu-1.0)
+LDFLAGS         +=      $$(pkg-config --libs starpu-1.0)
 @end example
 @end cartouche
 
@@ -218,7 +218,7 @@ disabled thanks to @code{starpu_data_set_default_sequential_consistency_flag} or
 
 @smallexample
 % make hello_world
-cc $(pkg-config --cflags libstarpu-1.0)  $(pkg-config --libs libstarpu-1.0) hello_world.c -o hello_world
+cc $(pkg-config --cflags starpu-1.0)  $(pkg-config --libs starpu-1.0) hello_world.c -o hello_world
 % ./hello_world
 Hello world (params = @{1, 2.000000@} )
 Callback function (arg 42)
@@ -345,7 +345,7 @@ constant factor from this pointer.
 
 @smallexample
 % make vector_scal
-cc $(pkg-config --cflags libstarpu-1.0)  $(pkg-config --libs libstarpu-1.0)  vector_scal.c   -o vector_scal
+cc $(pkg-config --cflags starpu-1.0)  $(pkg-config --libs starpu-1.0)  vector_scal.c   -o vector_scal
 % ./vector_scal
 0.000000 3.000000 6.000000 9.000000 12.000000
 @end smallexample
@@ -595,8 +595,8 @@ be compiled at run-time when calling the function
 
 @cartouche
 @smallexample
-CFLAGS  += $(shell pkg-config --cflags libstarpu-1.0)
-LDFLAGS += $(shell pkg-config --libs libstarpu-1.0)
+CFLAGS  += $(shell pkg-config --cflags starpu-1.0)
+LDFLAGS += $(shell pkg-config --libs starpu-1.0)
 CC       = gcc
 
 vector_scal: vector_scal.o vector_scal_cpu.o vector_scal_cuda.o vector_scal_opencl.o

+ 1 - 1
doc/chapters/c-extensions.texi

@@ -23,7 +23,7 @@ When StarPU has been installed with its GCC plug-in, programs that use
 these extensions can be compiled this way:
 
 @example
-$ gcc -c -fplugin=`pkg-config libstarpu-1.0 --variable=gccplugin` foo.c
+$ gcc -c -fplugin=`pkg-config starpu-1.0 --variable=gccplugin` foo.c
 @end example
 
 @noindent

+ 2 - 2
doc/chapters/using.texi

@@ -36,8 +36,8 @@ with the @code{libstarpu} package. Similar packages are provided for
 @code{libstarpumpi} and @code{libstarpufft}.}:
 
 @example
-% pkg-config --cflags libstarpu-1.0  # options for the compiler
-% pkg-config --libs libstarpu-1.0    # options for the linker
+% pkg-config --cflags starpu-1.0  # options for the compiler
+% pkg-config --libs starpu-1.0    # options for the linker
 @end example
 
 Also pass the @code{--static} option if the application is to be

libstarpu-1.0.pc.in → starpu-1.0.pc.in