关于AC_LIB_PREPARE_PREFIX的错误

博主花费近12小时编译anjuta-2.0源代码,配置时出现AC_LIB_PREPARE_PREFIX未定义错误。经排查是机器未安装libiconv库文件,该库编译后产生的*.m4文件是aclocal依赖文件,将其复制到指定目录后配置成功,还为其他开源项目提供思路。
部署运行你感兴趣的模型镜像
今天花费了近12个小时编译anjuta-2.0的源代码。

在配置过程中,总是出现AC_LIB_PREPARE_PREFIX没有定义的错误。

费了九牛二虎,终于弄明白了事情的大概。

原来,在我的机器上没有安装libiconv的库文件。特别是该库在从源码编译后将会产生一系列的*.m4文件。
这些文件是其他从源代码生成程序的aclocal依赖文件。

而 AC_LIB_PREPARE_PREFIX 就在 lib-prefix.m4 文件中定义。

把编译libiconv成功后生成的*.m4文件(这些文件在./m4目录中),复制到你的aclocal能够检索到的目录中。通常是 /usr/share/aclocal 或 /usr/local/share/aclocal目录。

在我的/downloads/applications/anjuta/中 ./configure ....通过了配置。

至此,配置工作完成了。

相信对于其他开源项目,特别是只提供autogen.sh身成脚本的源代码来说,如果遇到我今天的问题,可以按照这个思路进行处理。

您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

这个makefile是什么意思 # # Copyright (C) 2007-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=samba PKG_VERSION:=4.7.6 PKG_RELEASE:=1.1 PKG_SOURCE_URL:=http://ftp.samba.org/pub/samba \ http://ftp.samba.org/pub/samba/stable PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_MD5SUM:=76da2fa64edd94a0188531e7ecb27c4e PKG_LICENSE:=GPLv3 PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk MAKE_PATH:=source3 CONFIGURE_PATH:=source3 PKG_BUILD_BIN:=$(PKG_BUILD_DIR)/$(MAKE_PATH)/bin define Package/samba36-server SECTION:=net # CATEGORY:=Network CATEGORY:=TP-LINK iplatform apps SUBMENU:=USB Storage Sharing TITLE:=Samba 3.6 SMB/CIFS server URL:=http://www.samba.org/ DEPENDS:=+USE_EGLIBC:librt +libuuid +libubox +libubus +usb_sync endef define Package/samba36-client SECTION:=net CATEGORY:=TP-LINK iplatform apps TITLE:=Samba 3.6 SMB/CIFS client URL:=http://www.samba.org/ DEPENDS:=+libreadline +libncurses endef define Package/nmbd SECTION:=net CATEGORY:=TP-LINK iplatform apps SUBMENU:=USB Storage Sharing TITLE:=NetBIOS name server DEPENDS:=+USE_EGLIBC:librt +libuuid +libubox +libubus +usb_sync endef define Package/samba36-libs SECTION:=libs CATEGORY:=Libraries TITLE:=Samba shared libraries (libsmbclient) DEPENDS:=+samba36-server PROVIDES:=libsmbclient endef define Package/samba36-libs/description This package provides the shared libraries for Samba, including libsmbclient. endef define Package/samba36-server/config config PACKAGE_SAMBA_MAX_DEBUG_LEVEL int "Maximum level of compiled-in debug messages" depends PACKAGE_samba36-server || PACKAGE_samba36-client #depends PACKAGE_samba36-server || PACKAGE_nmbd default -1 config PACKAGE_SAMBA_GUEST_NETWORK_LIMIT bool "limit guest network access" default n help Feature: samba limit guest network access endef define Package/samba36-server/description The Samba software suite is a collection of programs that implements the SMB protocol for UNIX systems, allowing you to serve files and printers to Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred to as the LanManager or Netbios protocol. endef ifeq ($(CONFIG_RTL_SENDFILE_PATCH),y) TARGET_CFLAGS += -DCONFIG_RTL_SENDFILE_PATCH endif TARGET_CFLAGS += -DMAX_DEBUG_LEVEL=$(CONFIG_PACKAGE_SAMBA_MAX_DEBUG_LEVEL) -D__location__=\\\"\\\" -ffunction-sections -fdata-sections TARGET_LDFLAGS += -Wl,--gc-sections -lubox -lubus -lifaddrs ifeq ($(CONFIG_PACKAGE_SAMBA_GUEST_NETWORK_LIMIT), y) TARGET_CFLAGS += -DGUEST_NETWORK_LIMIT=1 endif CONFIGURE_VARS += \ ac_cv_lib_attr_getxattr=no \ ac_cv_search_getxattr=no \ ac_cv_file__proc_sys_kernel_core_pattern=yes \ libreplace_cv_HAVE_C99_VSNPRINTF=yes \ libreplace_cv_HAVE_IFACE_IFCONF=yes \ libreplace_cv_HAVE_GETADDRINFO=yes \ LINUX_LFS_SUPPORT=yes \ samba_cv_CC_NEGATIVE_ENUM_VALUES=yes \ samba_cv_HAVE_GETTIMEOFDAY_TZ=yes \ samba_cv_HAVE_IFACE_IFCONF=yes \ samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes \ samba_cv_HAVE_SECURE_MKSTEMP=yes \ samba_cv_HAVE_WRFILE_KEYTAB=no \ samba_cv_USE_SETREUID=yes \ samba_cv_USE_SETRESUID=yes \ samba_cv_have_setreuid=yes \ samba_cv_have_setresuid=yes \ ac_cv_header_zlib_h=no \ samba_cv_zlib_1_2_3=no CONFIGURE_ARGS += \ --exec-prefix=/usr \ --prefix=/ \ --disable-avahi \ --disable-cups \ --disable-pie \ --disable-relro \ --disable-static \ --disable-swat \ --enable-shared-libs \ --with-codepagedir=/etc/samba \ --with-configdir=/etc/samba \ --with-included-iniparser \ --with-included-popt \ --with-lockdir=/var/lock \ --with-logfilebase=/var/log \ --with-nmbdsocketdir=/var/nmbd \ --with-piddir=/var/run \ --with-privatedir=/etc/samba \ --with-sendfile-support \ --without-acl-support \ --without-cluster-support \ --without-ads \ --without-krb5 \ --without-ldap \ --without-pam \ --without-winbind \ --without-libtdb \ --without-libtalloc \ --without-libnetapi \ --without-libsmbsharemodes \ --without-libtevent \ --without-libaddns \ --with-shared-modules=pdb_tdbsam,pdb_wbc_sam,idmap_nss,nss_info_template,auth_winbind,auth_wbc,auth_domain MAKE_FLAGS += DYNEXP= PICFLAG= MODULES= define Build/Prepare mkdir -p $(PKG_BUILD_DIR) $(CP) ./src/* $(PKG_BUILD_DIR) endef define Package/samba36-server/install $(INSTALL_DIR) $(1)/etc/config $(INSTALL_DATA) ./filesystem/etc/config/samba $(1)/etc/config/samba $(INSTALL_DIR) $(1)/etc/samba $(INSTALL_DATA) ./filesystem/etc/samba/smb.conf.template $(1)/etc/samba $(INSTALL_DATA) ./filesystem/etc/samba/smbusers $(1)/etc/samba $(INSTALL_DATA) ./filesystem/etc/samba/lognames.deny $(1)/etc/samba $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/lowcase.dat $(1)/etc/samba $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/upcase.dat $(1)/etc/samba $(INSTALL_DATA) $(PKG_BUILD_DIR)/codepages/valid.dat $(1)/etc/samba $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./filesystem/etc/init.d/samba $(1)/etc/init.d/samba $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_BIN)/samba_multicall $(1)/usr/sbin ln -sf samba_multicall $(1)/usr/sbin/smbd ln -sf samba_multicall $(1)/usr/sbin/nmbd ln -sf samba_multicall $(1)/usr/sbin/smbpasswd endef define Package/samba36-client/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_BIN)/smbclient $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_BIN)/nmblookup $(1)/usr/sbin endef define Package/nmbd/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_BIN)/nmbd $(1)/usr/sbin endef # 新增共享库包定义 define Package/samba36-libs SECTION:=libs CATEGORY:=Libraries TITLE:=Samba shared libraries DEPENDS:=+samba36-server endef define Package/samba36-libs/install # 创建库目录 $(INSTALL_DIR) $(1)/usr/lib # 安装核心库文件 $(INSTALL_DATA) $(PKG_BUILD_BIN)/libsmbclient.so.* $(1)/usr/lib/ # 创建符号链接 ln -sf libsmbclient.so.0 $(1)/usr/lib/libsmbclient.so # 安装其他依赖库(根据实际需要添加) #$(INSTALL_DATA) $(PKG_BUILD_DIR)/bin/shared/libwbclient.so.* $(1)/usr/lib/ #ln -sf libwbclient.so.0 $(1)/usr/lib/libwbclient.so endef # 激活库包构建 $(eval $(call BuildPackage,samba36-libs)) #$(eval $(call BuildPackage,samba36-client)) $(eval $(call BuildPackage,samba36-server)) $(eval $(call BuildPackage,samba36-client)) #$(eval $(call BuildPackage,nmbd))
11-02
D:\pojiebtc\TeamHunter_Version1.6>pip install PyQt6 Collecting PyQt6 Using cached PyQt6-6.6.1.tar.gz (1.0 MB) Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-77draeyf\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/8c/2b/6fe0409501798abc780a70cab48c39599742ab5a8168e682107eaab78fca/PyQt6-6.6.1.tar.gz#sha256=9f158aa29d205142c56f0f35d07784b8df0be28378d20a97bcda8bd64ffd0379 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-77draeyf\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Using cached PyQt6-6.6.0.tar.gz (1.0 MB) Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-baknb3db\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/17/dc/969e2da415597b328e6a73dc233f9bb4f2b312889180e9bbe48470c957e7/PyQt6-6.6.0.tar.gz#sha256=d41512d66044c2df9c5f515a56a922170d68a37b3406ffddc8b4adc57181b576 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-baknb3db\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Downloading PyQt6-6.5.3.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 285 kB/s Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_mdfu7fb\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/18/b8/74667c8108d8481b87f8d87e6d962b64eb53ea21432cdbfbfeee4d2b4430/PyQt6-6.5.3.tar.gz#sha256=bcbbf9511b038b4924298ca10999aa36eb37a0a38d0638f895f9bba6025c0a77 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-_mdfu7fb\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Downloading PyQt6-6.5.2.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 656 kB/s Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-wcm587pq\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/34/da/e03b7264b1e88cd553ff62a71c0c19f55690e08928130f4aae613723e535/PyQt6-6.5.2.tar.gz#sha256=1487ee7350f9ffb66d60ab4176519252c2b371762cbe8f8340fd951f63801280 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-wcm587pq\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Downloading PyQt6-6.5.1.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 1.1 MB/s Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-up_ke487\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/1c/77/3b14889ac1e677bd5a284e0d003cac873689046e328401d92a927c9cc921/PyQt6-6.5.1.tar.gz#sha256=e166a0568c27bcc8db00271a5043936226690b6a4a74ce0a5caeb408040a97c3 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-up_ke487\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Downloading PyQt6-6.5.0.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 1.1 MB/s Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-x27e1v5f\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' cwd: None Complete output (4 lines): Collecting sip<7,>=6.5 Using cached sip-6.5.1-cp36-abi3-win_amd64.whl (521 kB) ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2) ERROR: No matching distribution found for PyQt-builder<2,>=1.15 ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/28/01/9e4b91cb0c1023934b1dc654c5bbfc29cbabcbf6092f936b74aee46dd637/PyQt6-6.5.0.tar.gz#sha256=b97cb4be9b2c8997904ea668cf3b0a4ae5822196f7792590d05ecde6216a9fbc (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\Administrator\AppData\Local\Temp\pip-build-env-x27e1v5f\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output. Downloading PyQt6-6.4.2.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 1.3 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmp9jy9jmkb' cwd: C:\Users\Administrator\AppData\Local\Temp\pip-install-q20zf_6x\pyqt6_67ae0ab6d10b477c897f0454abf0efcc Complete output (34 lines): Error in sitecustomize; set PYTHONVERBOSE for traceback: SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb0 in position 0: invalid start byte (sitecustomize.py, line 7) Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 156, in prepare_metadata_for_build_wheel hook = backend.prepare_metadata_for_build_wheel AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 121, in import_callable spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "project.py", line 25, in <module> from pyqtbuild import PyQtBindings, PyQtProject, QmakeTargetInstallable ModuleNotFoundError: No module named 'pyqtbuild' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 363, in <module> main() File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 345, in main json_out['return_val'] = hook(**hook_input['kwargs']) File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 160, in prepare_metadata_for_build_wheel whl_basename = backend.build_wheel(metadata_directory, config_settings) File "D:\安装位置\btc\lib\site-packages\sipbuild\api.py", line 51, in build_wheel project = AbstractProject.bootstrap('pep517') File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 68, in bootstrap project_factory = cls.import_callable(default_factory_py, cls) File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 124, in import_callable detail=str(e)) sipbuild.exceptions.UserException ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/c3/e0/e1b592a6253712721612e2e64a323930a724e1f5cf297ed5ec6d6c86dda1/PyQt6-6.4.2.tar.gz#sha256=740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmp9jy9jmkb' Check the logs for full command output. Downloading PyQt6-6.4.1.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 1.6 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmp1dust89i' cwd: C:\Users\Administrator\AppData\Local\Temp\pip-install-q20zf_6x\pyqt6_8d97b5793faf458b86ace843feaa89c0 Complete output (34 lines): Error in sitecustomize; set PYTHONVERBOSE for traceback: SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb0 in position 0: invalid start byte (sitecustomize.py, line 7) Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 156, in prepare_metadata_for_build_wheel hook = backend.prepare_metadata_for_build_wheel AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 121, in import_callable spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "project.py", line 25, in <module> from pyqtbuild import PyQtBindings, PyQtProject, QmakeTargetInstallable ModuleNotFoundError: No module named 'pyqtbuild' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 363, in <module> main() File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 345, in main json_out['return_val'] = hook(**hook_input['kwargs']) File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 160, in prepare_metadata_for_build_wheel whl_basename = backend.build_wheel(metadata_directory, config_settings) File "D:\安装位置\btc\lib\site-packages\sipbuild\api.py", line 51, in build_wheel project = AbstractProject.bootstrap('pep517') File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 68, in bootstrap project_factory = cls.import_callable(default_factory_py, cls) File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 124, in import_callable detail=str(e)) sipbuild.exceptions.UserException ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/8a/a6/12565a8b14faaeb3ecf3edb5bc1e6bcb622dab776c23ea4eb4c369176c75/PyQt6-6.4.1.tar.gz#sha256=0c1dcadf161331cfdbde0906c05f7f8048dc4907d717647c33bbc4404146f59f (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmp1dust89i' Check the logs for full command output. Downloading PyQt6-6.4.0.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 1.3 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmpl0bvpgjd' cwd: C:\Users\Administrator\AppData\Local\Temp\pip-install-q20zf_6x\pyqt6_172bf76e7c2d46c7a75852ec4c5ba059 Complete output (34 lines): Error in sitecustomize; set PYTHONVERBOSE for traceback: SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb0 in position 0: invalid start byte (sitecustomize.py, line 7) Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 156, in prepare_metadata_for_build_wheel hook = backend.prepare_metadata_for_build_wheel AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 121, in import_callable spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "project.py", line 25, in <module> from pyqtbuild import PyQtBindings, PyQtProject, QmakeTargetInstallable ModuleNotFoundError: No module named 'pyqtbuild' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 363, in <module> main() File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 345, in main json_out['return_val'] = hook(**hook_input['kwargs']) File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 160, in prepare_metadata_for_build_wheel whl_basename = backend.build_wheel(metadata_directory, config_settings) File "D:\安装位置\btc\lib\site-packages\sipbuild\api.py", line 51, in build_wheel project = AbstractProject.bootstrap('pep517') File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 68, in bootstrap project_factory = cls.import_callable(default_factory_py, cls) File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 124, in import_callable detail=str(e)) sipbuild.exceptions.UserException ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/b2/c9/266b12a9826452e387f0ff4f0b4bbd29e11d2de81a5f60c0975933b34e7f/PyQt6-6.4.0.tar.gz#sha256=91392469be1f491905fa9e78fa4e4059a89ab616ddf2ecfd525bc1d65c26bb93 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmpl0bvpgjd' Check the logs for full command output. Downloading PyQt6-6.3.1.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 2.2 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... error ERROR: Command errored out with exit status 1: command: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmpy7_zonsq' cwd: C:\Users\Administrator\AppData\Local\Temp\pip-install-q20zf_6x\pyqt6_0a707fa5c34a42ada967d354d9a71095 Complete output (34 lines): Error in sitecustomize; set PYTHONVERBOSE for traceback: SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xb0 in position 0: invalid start byte (sitecustomize.py, line 7) Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 156, in prepare_metadata_for_build_wheel hook = backend.prepare_metadata_for_build_wheel AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 121, in import_callable spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "project.py", line 25, in <module> from pyqtbuild import PyQtBindings, PyQtProject, QmakeTargetInstallable ModuleNotFoundError: No module named 'pyqtbuild' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 363, in <module> main() File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 345, in main json_out['return_val'] = hook(**hook_input['kwargs']) File "D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 160, in prepare_metadata_for_build_wheel whl_basename = backend.build_wheel(metadata_directory, config_settings) File "D:\安装位置\btc\lib\site-packages\sipbuild\api.py", line 51, in build_wheel project = AbstractProject.bootstrap('pep517') File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 68, in bootstrap project_factory = cls.import_callable(default_factory_py, cls) File "D:\安装位置\btc\lib\site-packages\sipbuild\abstract_project.py", line 124, in import_callable detail=str(e)) sipbuild.exceptions.UserException ---------------------------------------- WARNING: Discarding https://files.pythonhosted.org/packages/a3/ab/c5989de70eceed91abf5f828d99817462ff75f41558e9f5a6f5213f0932c/PyQt6-6.3.1.tar.gz#sha256=8cc6e21dbaf7047d1fc897e396ccd9710a12f2ef976563dad65f06017d2c9757 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: 'D:\安装位置\btc\python.exe' 'D:\安装位置\btc\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\Administrator\AppData\Local\Temp\tmpy7_zonsq' Check the logs for full command output. Downloading PyQt6-6.3.0.tar.gz (1.0 MB) |████████████████████████████████| 1.0 MB 2.2 MB/s
09-30
现在呢 mkdir -p /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25 cp -fpR ./src/* /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25 touch /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/.prepared_c2d0a16b7871c64b29f76be535b29d9d (cd /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/source3/; if [ -x ./configure ]; then /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/ -name config.guess | xargs -r chmod u+w; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/ -name config.guess | xargs -r -n1 cp /data/red-round3/red-round3/Iplatform/openwrt/scripts/config.guess; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/ -name config.sub | xargs -r chmod u+w; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/ -name config.sub | xargs -r -n1 cp /data/red-round3/red-round3/Iplatform/openwrt/scripts/config.sub; AR=arm-buildroot-linux-gnueabi-ar AS="arm-buildroot-linux-gnueabi-gcc -c -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections" LD=arm-buildroot-linux-gnueabi-ld NM=arm-buildroot-linux-gnueabi-nm CC="arm-buildroot-linux-gnueabi-gcc" GCC="arm-buildroot-linux-gnueabi-gcc" CXX="arm-buildroot-linux-gnueabi-g++" RANLIB=arm-buildroot-linux-gnueabi-ranlib STRIP=arm-buildroot-linux-gnueabi-strip OBJCOPY=arm-buildroot-linux-gnueabi-objcopy OBJDUMP=arm-buildroot-linux-gnueabi-objdump SIZE=arm-buildroot-linux-gnueabi-size CFLAGS=" -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections " CXXFLAGS=" -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections " CPPFLAGS="-I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/usr-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/include " LDFLAGS="-L/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/lib -Wl,-rpath-link,/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/lib -Wl,--gc-sections -lubox -lubus -lifaddrs " ac_cv_lib_attr_getxattr=no ac_cv_search_getxattr=no ac_cv_file__proc_sys_kernel_core_pattern=yes libreplace_cv_HAVE_C99_VSNPRINTF=yes libreplace_cv_HAVE_IFACE_IFCONF=yes libreplace_cv_HAVE_GETADDRINFO=yes LINUX_LFS_SUPPORT=yes samba_cv_CC_NEGATIVE_ENUM_VALUES=yes samba_cv_HAVE_GETTIMEOFDAY_TZ=yes samba_cv_HAVE_IFACE_IFCONF=yes samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes samba_cv_HAVE_SECURE_MKSTEMP=yes samba_cv_HAVE_WRFILE_KEYTAB=no samba_cv_USE_SETREUID=yes samba_cv_USE_SETRESUID=yes samba_cv_have_setreuid=yes samba_cv_have_setresuid=yes ac_cv_header_zlib_h=no samba_cv_zlib_1_2_3=no ./configure --target=arm-openwrt-linux-uclibc --host=arm-openwrt-linux-uclibc --build=x86_64-linux-gnu --program-prefix="" --program-suffix="" --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/lib --sysconfdir=/etc --datadir=/usr/share --localstatedir=/var --mandir=/usr/man --infodir=/usr/info --disable-nls --host=arm-buildroot-linux-gnueabi --with-libtalloc=internal ac_cv_header_zlib_h=yes samba_cv_zlib_1_2_3=yes ; fi; ) rm -f /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/.configured_* touch /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/.configured_ CFLAGS=" -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/usr-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/include " CXXFLAGS=" -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/usr-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/include " LDFLAGS="-L/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/lib -Wl,-rpath-link,/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/lib -Wl,--gc-sections -lubox -lubus -lifaddrs " make -j1 -C /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/source3 AR=arm-buildroot-linux-gnueabi-ar AS="arm-buildroot-linux-gnueabi-gcc -c -DMAX_DEBUG_LEVEL=-1 -D__location__=\\\"\\\" -ffunction-sections -fdata-sections" LD=arm-buildroot-linux-gnueabi-ld NM=arm-buildroot-linux-gnueabi-nm CC="arm-buildroot-linux-gnueabi-gcc" GCC="arm-buildroot-linux-gnueabi-gcc" CXX="arm-buildroot-linux-gnueabi-g++" RANLIB=arm-buildroot-linux-gnueabi-ranlib STRIP=arm-buildroot-linux-gnueabi-strip OBJCOPY=arm-buildroot-linux-gnueabi-objcopy OBJDUMP=arm-buildroot-linux-gnueabi-objdump SIZE=arm-buildroot-linux-gnueabi-size CROSS="arm-buildroot-linux-gnueabi-" ARCH="arm" DYNEXP= PICFLAG= MODULES= ; make[4]: Entering directory '/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/source3' make[4]: *** No targets specified and no makefile found. Stop. make[4]: Leaving directory '/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/source3' Makefile:192: recipe for target '/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/.built' failed make[3]: *** [/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/samba-3.6.25/.built] Error 2 make[3]: Leaving directory '/data/red-round3/red-round3/Iplatform/packages/opensource/samba' package/Makefile:133: recipe for target 'package/feeds/iplatform/samba/compile' failed make[2]: *** [package/feeds/iplatform/samba/compile] Error 2 make[2]: Leaving directory '/data/red-round3/red-round3/Iplatform/openwrt' /data/red-round3/red-round3/Iplatform/openwrt/include/toplevel.mk:184: recipe for target 'package/samba/compile' failed make[1]: *** [package/samba/compile] Error 2 make[1]: Leaving directory '/data/red-round3/red-round3/Iplatform/openwrt' Makefile:234: recipe for target 'iplatform_package/samba/compile' failed make: *** [iplatform_package/samba/compile] Error 2
最新发布
11-02
评论 1
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值