Преглед на файлове

include source headers before system headers, to fix build when older starpu is already installed

Samuel Thibault преди 14 години
родител
ревизия
b0bbe73041
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      examples/stencil/Makefile.am

+ 1 - 1
examples/stencil/Makefile.am

@@ -35,7 +35,7 @@ NVCCFLAGS += $(HWLOC_CFLAGS)
 
 .cu.o:
 	$(MKDIR_P) `dirname $@`
-	$(NVCC) $< -c -o $@ --compiler-options -fno-strict-aliasing  $(NVCCFLAGS) -I$(top_srcdir)/include/ -I$(top_builddir)/include/
+	$(NVCC) $< -c -o $@ --compiler-options -fno-strict-aliasing -I$(top_srcdir)/include/ -I$(top_builddir)/include/ $(NVCCFLAGS)
 
 
 endif