运行 make 时缺少库?

运行 make 时缺少库?

我正在尝试安装程序在我的计算机上(运行 Ubuntu 12.04),但是运行时出现以下错误make

Starting build...
Working Directory : /home/laptop/mplabs_test
Build Type        : 

Generating OMP binary...
/bin/sh: 1: Syntax error: "&" unexpected
make: *** [lbs3d] Error 2

我不确定如何解释这个错误,我是否缺少需要安装的库?

答案1

这似乎是一个破折号问题。

假设您具有所需的构建环境,则在命令行上明确设置makeshell即可工作:bash

make "SHELL=/bin/bash"

答案2

在以下位置打开 Makefile mplabs

gedit Makefile

搜索|&并替换所有出现的|

相关内容