socsvn commit: r271190 - soc2014/dpl/CellularAutomata

dpl at FreeBSD.org dpl at FreeBSD.org
Mon Jul 21 10:44:16 UTC 2014


Author: dpl
Date: Mon Jul 21 10:44:15 2014
New Revision: 271190
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=271190

Log:
  Updated Makefile to use llvm-config-devel.
  

Modified:
  soc2014/dpl/CellularAutomata/Makefile

Modified: soc2014/dpl/CellularAutomata/Makefile
==============================================================================
--- soc2014/dpl/CellularAutomata/Makefile	Mon Jul 21 09:49:09 2014	(r271189)
+++ soc2014/dpl/CellularAutomata/Makefile	Mon Jul 21 10:44:15 2014	(r271190)
@@ -5,7 +5,7 @@
 all: cellatom
 
 cellatom: interpreter.o main.o grammar.o compiler.o runtime.bc
-	c++ compiler.o interpreter.o grammar.o main.o `llvm-config --ldflags --libs ${LLVM_LIBS}` -o cellatom -ldl
+	c++ compiler.o interpreter.o grammar.o main.o `llvm-config-devel --ldflags --libs ${LLVM_LIBS}` -o cellatom -ldl
 
 interpreter.o: interpreter.c AST.h
 main.o: main.c AST.h grammar.h
@@ -14,7 +14,7 @@
 	clang -c -emit-llvm runtime.c -o runtime.bc -O0
 
 compiler.o: compiler.cc AST.h
-	c++ -std=c++0x `llvm-config --cxxflags` -c compiler.cc -O3 #-g -O0 -fno-inline
+	c++ -std=c++0x `llvm-config-devel --cxxflags` -c compiler.cc -O3 #-g -O0 -fno-inline
 grammar.h: grammar.c
 
 grammar.c: grammar.y AST.h lemon


More information about the svn-soc-all mailing list