0

im trying to compile c++ parellel program using BSPlib , on a platfrom that has bsp compile ( bsp++). Nevertheless , it doesnt seem to recognize any of the bsp functions.

what should i do in order to include / import/ tell the compiler that im using bsp?

include bsplib? bsplib.h ?

thanks

RanZilber
  • 1,840
  • 4
  • 31
  • 42
  • Have you ever used another C++ library or is it just bsp that causes a problem? – mmmmmm Dec 20 '10 at 18:20
  • 2
    What environment are you building with? Makefiles, Visual Studio? With any library you need to tell your compiler to link against the library. The specifics of this will be environment dependent. Please modify your question! – DeusAduro Dec 20 '10 at 18:23

1 Answers1

0
#include "bsplib.h"

then add bsplib to the link library list.

wallyk
  • 56,922
  • 16
  • 83
  • 148