I downloaded the CILK++ SDK version 1.1, and succeeded to run few examples in Windows both from the command line and from the Visual Studio.
Now - I have a package TAUCS (sparse linear solver), which was written in C, and includes CILK directives.
I build this package through a makefile.
I know that for Irix or Solaris, I need to append these lines to the makefile:
CILKC = /export/home/stoledo/cilk-devel/current/support/cilkclocal
CILKOUTFLG = -o ./
CILKFLAGS = -O3 -x cilk
LD = $(CILKC)
My question is what should I append in the makefile for Win32 ?
Should I download other CILK compiler?
thanks in advance
Ron


