在OSX Lion 10.7下安装GPUOCELOT

时间:2012-07-19 13:47:07

标签: boost cuda emulation gpu-programming

我是stackoverflow的新手。我的问题是关于gpuocelet。有没有人使用它?它是否适用于unix(我使用的是带有os x 10.7的macbook air)操作系统?我尝试了很多方法来安装它,但没有成功。我按照这些说明正确安装了macports所需的所有软件包http://code.google.com/p/gpuocelot/downloads/detail?name=Ocelot_Installation_manual2.pdf 特别是我通过macports安装了boost 1.50但是我在gpuocelot文件夹中运行./configure的错误是:

MacBook-Air-di-Manfredo:downloads manfredo$ cd ocelot-2.0.969/
MacBook-Air-di-Manfredo:ocelot-2.0.969 manfredo$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for main in -lboost_system-mt... no
configure: error: "libboost_system required"
MacBook-Air-di-Manfredo:ocelot-2.0.969 manfredo$

我的路径是

        PATH=/Users/manfredo/downloads/boost_1_42_0/stage/lib:/Users/manfredo/downloads/boost_1_42_0/libs:/Users/manfredo/downloads/boost_1_42_0/libs:/Users/manfredo/downloads/boost_1_42_0/boost/system:/Users/manfredo/downloads/boost_1_42_0/boost:/opt/local/bin:/opt/local/sbin:/opt/local/lib:/usr/local/cuda/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

欢迎提供各种帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

看起来你有另一个尝试安装Boost版本安装在你的主目录中,因为你已经把它放在你的路径上了,Boost也不会在路径上但是头文件应该在INCLUDE环境变量和库中lib变量。

对于macport,它们分别是/ opt / local / include和/ opt / local / lib。

e.g。来自variables that control the build

的Cmake
CMAKE_INCLUDE_CURRENT_DIR=/opt/local/include
CMAKE_LIBRARY_PATH_FLAG=/opt/local/lib