[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile

Brian Gaeke gaeke at cs.uiuc.edu
Thu Dec 9 16:18:40 PST 2004



Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie:

Makefile updated: 1.1 -> 1.2
---
Log message:

Hacks to make more Prolangs-C benchmarks work under Solaris:
* Include -lsocket -lnsl for socket-using programs
* Don't include (prototypes for) getopt that conflict(s) with system's
  (prototype)
 


---
Diffs of the changes:  (+3 -0)

Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile:1.1	Tue Oct  5 14:29:50 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/dixie/Makefile	Thu Dec  9 18:18:23 2004
@@ -3,4 +3,7 @@
 PROG = dixie
 #STDIN_FILENAME = $(SourceDir)/testset
 include $(LEVEL)/MultiSource/Makefile.multisrc
+ifeq ($(OS),SunOS)
+LDFLAGS+=-lsocket -lnsl
+endif
 






More information about the llvm-commits mailing list