[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/archie-client/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/archie-client:
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/archie-client/Makefile
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/archie-client/Makefile:1.1 llvm-test/MultiSource/Benchmarks/Prolangs-C/archie-client/Makefile:1.2
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/archie-client/Makefile:1.1 Tue Oct 5 13:19:57 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/archie-client/Makefile Thu Dec 9 18:18:22 2004
@@ -3,3 +3,6 @@
PROG = archie
include $(LEVEL)/MultiSource/Makefile.multisrc
+ifeq ($(OS),SunOS)
+LDFLAGS += -lsocket -lnsl
+endif
More information about the llvm-commits
mailing list