0

我正在尝试在 linux 上构建一个软件,我需要在 bash shell 中设置以下环境变量。

BLAS_LIBRARIES=-L/home/someuser/GotoBLAS2/lib -lgoto2 -lgfortran -lpthread CUBLAS_LIBRARIES=-L/usr/local/cuda/4.0.17/cuda/lib64 -lcublas -lcudart -lcuda

当我在 bash shell 中执行此操作时,出现错误: bash: -lgoto2: command not found bash: -lcublas: command not found

谁能告诉我如何设置这些而不会出现这些错误?

4

1 回答 1

3

你只需要引用它们:

BLAS_LIBRARIES="-L/home/someuser/GotoBLAS2/lib -lgoto2 -lgfortran -lpthread "
于 2012-04-06T17:09:02.737 回答