summaryrefslogtreecommitdiff
path: root/lang/cilk/patches
diff options
context:
space:
mode:
authorjtb <jtb>2002-05-04 00:37:28 +0000
committerjtb <jtb>2002-05-04 00:37:28 +0000
commit47da83bff2f1795a2d11c6a10eba539ec43a5f24 (patch)
treed7c07d84e910588d7d8073e6351ba8ccd60f7a40 /lang/cilk/patches
parentdff6303baadb9d56ba63731c62eb183140d26546 (diff)
downloadpkgsrc-47da83bff2f1795a2d11c6a10eba539ec43a5f24.tar.gz
Initial import of cilk.
Cilk is a language for multithreaded parallel programming based on ANSI C. Cilk is designed for general-purpose parallel programming, but it is especially effective for exploiting dynamic, highly asynchronous parallelism, which can be difficult to write in data-parallel or message-passing style. Cilk has been developed since 1994 by the Supercomputing Technologies Group at the MIT Laboratory for Computer Science. Cilk has been used for research, teaching, and for coding applications such as a virus shell assembly simulator and three chess programs.
Diffstat (limited to 'lang/cilk/patches')
-rw-r--r--lang/cilk/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/lang/cilk/patches/patch-aa b/lang/cilk/patches/patch-aa
new file mode 100644
index 00000000000..d3db6ecaa77
--- /dev/null
+++ b/lang/cilk/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/05/04 00:37:29 jtb Exp $
+
+--- examples/Makefile.in.orig Fri May 3 13:12:15 2002
++++ examples/Makefile.in Fri May 3 13:12:37 2002
+@@ -574,7 +574,7 @@
+
+ fib-serial: $(fib_serial_OBJECTS) $(fib_serial_DEPENDENCIES)
+ @rm -f fib-serial
+- $(CC) -o $@ $(fib_serial_OBJECTS) $(LIBS)
++ $(CC) -o $@ $(fib_serial_OBJECTS) $(LDFLAGS) $(LIBS)
+
+ check: hello testall fft fib lu matmul cilksort heat test-locks
+ @echo "Runnig Cilk tests. This will take a while."