gpt4 book ai didi

makefile - .deps/*.Po : No such file or directory compiler error

转载 作者:行者123 更新时间:2023-12-02 18:54:39 25 4
gpt4 key购买 nike

我的configure.ac看起来像

AC_PREREQ(2.61)
AC_INIT(MyProject, 1.0.0, BUG-REPORT-ADDRESS)
AM_INIT_AUTOMAKE([1.10 no-define foreign])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([obj/threading/Makefile])
#AC_OUTPUT([Makefile obj/Makefile obj/threading/Makefile])

AC_USE_SYSTEM_EXTENSIONS
AC_LANG([C++])
AC_PROG_CXX([clang++ g++])

AX_CXX_COMPILE_STDCXX_11()
AS_IF([test "x$HAVE_CXX11" != "x1"],
[AC_MSG_ERROR([** A compiler with C++11 language features is required.])])

CXXFLAGS='-Wall -std=c++11'
AC_SUBST(CXXFLAGS)

AC_OUTPUT

我的 Makefile.am 看起来像

AUTOMAKE_OPTIONS = subdir-objects

SRCDIR = $(top_srcdir)/src/threading

bin_PROGRAMS = node

node_SOURCES = $(SRCDIR)/UnitTests/node.cpp
node_CPPFLAGS =
node_LDFLAGS =
node_CXXFLAGS = $( CXXFLAGS )

我收到以下错误

Makefile:394: ../../src/threading/UnitTests/.deps/node-node.Po: No such file or directory

最佳答案

当我升级 autoconf 版本时,我的 autoconf 文件也遇到了类似的问题。我注意到 Debian 列表上有一个错误报告:Bug #752993这似乎与这个问题有关。因此,我们似乎在 autoconf 项目中遇到了错误。

我已遵循错误报告中的解决方法,这对我来说效果很好。因此,这意味着我删除了 Makefile.am 中的“AUTOMAKE_OPTIONS = subdir-objects”。这样做之后,我收到了很多关于 autoreconf 的警告,但之后它确实起作用了。所以,你可能想尝试一下。希望它能帮助你前进(9个月后!)

关于makefile - .deps/*.Po : No such file or directory compiler error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18839857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com