소스 검색

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