簡體   English   中英

致命錯誤:L3900U:Verifone vx 820中無法識別的選項'--no_import_unresolved'

[英]Fatal error: L3900U: Unrecognized option '--no_import_unresolved' in Verifone vx 820

我想使用SDK VX GUI在VeriFone vx 820上開發應用程序。我在下面使用make文件,在編譯步驟中使用它的編譯確定,但是在鏈接步驟中遇到了Fatal error: L3900U: Unrecognized option '--no_import_unresolved'

我該如何解決?

我的make文件是:##nmake makefile以構建示例VxGUI客戶端應用程序

#VRXSDK=C:\eVoAps\VRXSDK\3.7.4
#VXEOS =C:\eVoAps\EOSSDK\1.7.1.0

VRXSDK=C:\eVoAps\SDK\1.2.0\VRXSDK
VXEOS=C:\eVoAps\SDK\1.2.0\EOSSDK



# to use VxGUI EnableHeader() method, 1.2.0 SDK and VxGUI task are required
# VXGUISDK=c:\evoAps\VxGUISDK\1.2.0.6
VXGUISDK=C:\eVoAps\SDK\1.2.0\GUISDK

VRXIncludes = $(VRXSDK)\include
EOSIncludes = $(VXEOS)\include

SrcDir = .
ObjDir = .
OutDir = .

VXGUISDKInclude = $(VXGUISDK)\include

Includes = -I$(VRXIncludes) -I$(VXGUISDKInclude) -I$(EOSIncludes)
# Compiler options - ignoring warnings on "inherits implicit virtual" and
# "overloaded virtual function only partially overridden..." and
# "nested comments not allowed" and
# Note that warnings on missing return statements will still be generated due to the VxGUI headers
COptions = -p -g -vsoapp -armcc,"--diag_suppress 1300\,611\,9" -D LOGSYS_FLAG -D LOGSYS_NEW_API_STYLE 
LinkOptions = -vsoapp -g -p 

Libs = \
    $(VXGUISDK)\lib\libvxguisdk.so  \
    $(VXEOS)\lib\ceif.o \
    $(VXEOS)\lib\elog.o


AppObjects = \
        $(ObjDir)\hello.o 


pseudoOut : $(OutDir)\hello.vsa.p7s

$(OutDir)\hello.vsa.p7s : $(OutDir)\hello.vsa 
    "$(VSFSTOOL)\filesignature" .\hello.fst -nogui

$(OutDir)\hello.vsa : $(AppObjects)
    $(VRXSDK)\bin\vrxcc $(LinkOptions) $(AppObjects) $(Libs) -o $@
    $(VRXSDK)\bin\vrxhdr -s 75000 -h 50000 -lELOG.LIB=N:/ELOG.LIB -lceif.lib=N:/CEIF.LIB $(OutDir)\hello.vsa

######  Compile #######
$(ObjDir)\hello.o : $(SrcDir)\hello.cpp 
    $(VRXSDK)\bin\vrxcc -c $(Includes)  $(COptions) $(SrcDir)\hello.cpp -o $@

您的armcc版本是什么?

我沒有此版本,但來自:Verix eVo GUI SDK發行說明/ 1.4.7.1版

2.軟件要求:

VFSDK 1.1.0 or later which includes:
VRXSDK 3.5.0 or later
EOSSDK 1.8.0 or later
**RVDS 4.0 (bin: 902; inc & lib: 902)**

在提示符(cmd)下使用以下命令檢出您的版本:

armcc --vsn

Verifone的ARMC C / C ++編譯器,RVCT4.0 [Build 902]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM