如何在 CentOs(或任何 LINUX/UNIX 系统)上构建/安装 protobuf 2.4.1?

发布于 2025-01-08 12:30:13 字数 511 浏览 0 评论 0原文

好吧,我在 UNIX/LINUX 领域完全是个外国人,但我需要安装 profbuf 2.4.1。

我按照说明执行

我只能走到 ./configure'。当我尝试运行make` 时,出现一些错误,提示“未指定目标且未找到 makefile...停止”

有人知道我可能做错了什么吗?

谢谢!!!

Ok, so I'm kind of a complete foreigner in the UNIX/LINUX land, but I need to install profbuf 2.4.1.

I was following the instructions by doing

I could only go as far as ./configure'. WHen I tried runningmake`, I got some error saying "No target specified and no makefile found... Stop"

Does anyone know what I might've done wrong?

Thanks!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水波映月 2025-01-15 12:30:13

您的系统中可能没有 g++ 编译器,或者您的环境变量不包含它的路径。要在 Linux 上安装一个,请使用以下命令:

yum install gcc-c++

You probably don't have a g++ compiler in your system or your environment variable doesn't contain the path of it. To install one on linux use the following:

yum install gcc-c++
戏剧牡丹亭 2025-01-15 12:30:13

我以前也遇到过同样的问题,现在知道原因了。缺少相应的库。如果您使用的是redhat,请使用root权限输入两行命令:

# yum install glibc-headers
# yum install gcc-c++

如果您使用的是ubuntu,您可以输入:

# sudo apt-get install build-essential

我已经通过这种方式解决了我的问题。祝你好运!

I had met the same question before, and now I've known the reason. It's lack of corresponding library. If you are using redhat, use root permission to enter the two lines of commands:

# yum install glibc-headers
# yum install gcc-c++

If you are using ubuntu,you can enter this:

# sudo apt-get install build-essential

I've solved my question by that way. Wish you luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文