gpt4 book ai didi

c++ - CLOCKS_PER_SEC, token 前缺少二元运算符... [NFIQ 2.0]

转载 作者:行者123 更新时间:2023-11-30 02:27:05 25 4
gpt4 key购买 nike

我正在尝试按照 official guide 编译 NFIQ 2.0 源代码.在最后的构建步骤中,出现以下错误。

FRFXLLCreateLibraryContext.cpp:72:5: error: missing binary operator before token "1000000"
#if CLOCKS_PER_SEC == 1000
^
<builtin>: recipe for target 'FRFXLLCreateLibraryContext.o' failed

这里是关于当前gcc版本的信息

gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.2' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)

这里是ubuntu版本信息

uname -r
4.4.0-36-generic

是什么导致了这个问题,是否可以通过使用不同的编译器来解决?这是 make 命令的完整构建日志

make
make -C ../libFRFXLL
make[1]: Entering directory '/home/tutoivon/nfiq2/NFIQ2/libFRFXLL'
make -C src/libFRFXLL
make[2]: Entering directory '/home/tutoivon/nfiq2/NFIQ2/libFRFXLL/src/libFRFXLL'
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'FRFXLLCreateFeatureSetInPlaceFromRaw.o' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLCreateFeatureSetInPlaceFromRaw.o FRFXLLCreateFeatureSetInPlaceFromRaw.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLCreateFeatureSetInPlaceFromRaw.o
r - FRFXLLCreateFeatureSetInPlaceFromRaw.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'FRFXLLCreateFeatureSetInPlaceFromRaw.o' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLCreateContext.o FRFXLLCreateContext.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLCreateContext.o
r - FRFXLLCreateContext.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLCreateFeatureSetInPlace.o FRFXLLCreateFeatureSetInPlace.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLCreateFeatureSetInPlace.o
r - FRFXLLCreateFeatureSetInPlace.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLGetLibraryVersion.o FRFXLLGetLibraryVersion.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLGetLibraryVersion.o
r - FRFXLLGetLibraryVersion.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'FRFXLLExport.o' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLExport.o FRFXLLExport.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLExport.o
r - FRFXLLExport.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'FRFXLLExport.o' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLCreateFeatureSet.o FRFXLLCreateFeatureSet.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLCreateFeatureSet.o
r - FRFXLLCreateFeatureSet.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLDuplicateHandle.o FRFXLLDuplicateHandle.cpp
ar rv ../../lib/libFRFXLL.a FRFXLLDuplicateHandle.o
r - FRFXLLDuplicateHandle.o
make[2]: Warning: Archive '../../lib/libFRFXLL.a' seems to have been created in deterministic mode. 'S/LC_MESSAGES/make.mo' will always be updated. Please consider passing the U flag to ar to avoid the problem.
g++ -O2 -I../algorithm -I../../include -I../../src/include -I../../../ExternalDependencies/STL/STLport-5.2.1/stlport -fno-exceptions -fno-rtti -fno-stack-protector -fPIC -DFRFXLL_MAJOR=5 -DFRFXLL_MINOR=2 -DFRFXLL_REVISION=0 -DFRFXLL_BUILD=0 -c -o FRFXLLCreateLibraryContext.o FRFXLLCreateLibraryContext.cpp
In file included from /usr/include/time.h:41:0,
from FRFXLLCreateLibraryContext.cpp:35:
FRFXLLCreateLibraryContext.cpp:72:5: error: missing binary operator before token "1000000"
#if CLOCKS_PER_SEC == 1000
^
<builtin>: recipe for target 'FRFXLLCreateLibraryContext.o' failed
make[2]: *** [FRFXLLCreateLibraryContext.o] Error 1
rm FRFXLLCreateContext.o FRFXLLCreateFeatureSetInPlaceFromRaw.o FRFXLLDuplicateHandle.o FRFXLLCreateFeatureSet.o FRFXLLGetLibraryVersion.o FRFXLLCreateFeatureSetInPlace.o FRFXLLExport.o
make[2]: Leaving directory '/home/tutoivon/nfiq2/NFIQ2/libFRFXLL/src/libFRFXLL'
Makefile:50: recipe for target 'src/libFRFXLL' failed
make[1]: *** [src/libFRFXLL] Error 2
make[1]: Leaving directory '/home/tutoivon/nfiq2/NFIQ2/libFRFXLL'
Makefile:7: recipe for target '../libFRFXLL' failed
make: *** [../libFRFXLL] Error 2

最佳答案

NFIQ 库在这里有一个错误。

它假设 CLOCKS_PER_SEC 是一个宏常量,可以在像 #if 这样的预处理器指令中使用,但它不是! It expands, in an implementation-defined way, to some expression ……至少在 GCC 6.3 中(显然你的版本也是如此)该表达式是 ((clock_t)1000000)This expression will not work in a preprocessor directive .

也许 NFIQ 的作者只在 Visual Studio 中对其进行了测试,也许 Visual Studio 恰好将该宏扩展为基本文字。或者,也许他们根本没有测试。

不幸的是,没有简单的解决方法。他们必须完全停止在预处理器指令中使用 CLOCKS_PER_SEC,但我不知道他们是否可以使用实际的 C++ 代码轻松实现相同的目的。绝对是一个要向作者提出的问题。

关于c++ - CLOCKS_PER_SEC, token 前缺少二元运算符... [NFIQ 2.0],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42132559/

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