无法编译,因为未找到 valac,但它已安装

无法编译,因为未找到 valac,但它已安装

我正在尝试编译 gwibber。输入 ./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... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for valac-0.14... no
configure: WARNING: No Vala compiler found.  You will not be able to compile .vala source files.
configure: error: "No valac compiler found."

但这是我输入时得到的结果valac --version

Vala 0.15.0

那么,我的 valac 版本正确吗?如何修复?

答案1

安装 libval​​a-dev?根据你的发行版,你的命令可能会有所不同,但就我的情况而言,它将在 Ubuntu 上:

sudo apt-get install libvala-0.12-dev

在此处输入图片描述

如果你使用的是基于 Debian 的 Linux,那么只需执行

sudo apt-cache search libvala

或者

sudo apt-get install libvala-dev

它通常会下载最新版本。

在此处输入图片描述

相关内容