本文介绍了如何在c ++程序中包括BSP库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图编译c ++ parellel程序使用BSPlib,在一个platsp有bsp编译(bsp ++)。然而,它似乎不认识任何bsp函数。



我应该怎么做,以便包括/ import /告诉编译器im使用bsp?



包含bsplib? bsplib.h?



感谢

解决方案
  #includebsplib.h

然后将bsplib添加到链接库列表。 / p>

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

解决方案
#include "bsplib.h"

then add bsplib to the link library list.

这篇关于如何在c ++程序中包括BSP库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 17:27