1

gcc 4.7.1を使用してangelscript 2.25.1を使用しようとしています

エンジェルスクリプトを問題なくコンパイルしました。

ただし、angelscript を使用するプロジェクトをコンパイルしようとすると、次のエラーが発生します。

jarrett@jarrett-g74s:~/projects/myproject$ scons
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
g++ -o build/common/as_wrapper/AngelScript.o -c -I"../lwis/src/engine" -I"../ice_engine/src/engine" src/common/as_wrapper/AngelScript.cpp
src/common/as_wrapper/AngelScript.cpp: In member function ‘void as_wrapper::AngelScript::loadScripts()’:
src/common/as_wrapper/AngelScript.cpp:85:33: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
src/common/as_wrapper/AngelScript.cpp:87:30: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
src/common/as_wrapper/AngelScript.cpp:88:31: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
src/common/as_wrapper/AngelScript.cpp: In member function ‘int as_wrapper::AngelScript::initContext(char*, char*)’:
src/common/as_wrapper/AngelScript.cpp:242:20: error: ‘class asIScriptModule’ has no member named ‘GetFunctionIdByDecl’
src/common/as_wrapper/AngelScript.cpp:258:22: error: invalid conversion from ‘int’ to ‘asIScriptFunction*’ [-fpermissive]
In file included from src/common/as_wrapper/AngelScript.h:11:0,
                                 from src/common/as_wrapper/AngelScript.cpp:8:
/usr/local/include/angelscript/angelscript.h:734:26: error:   initializing argument 1 of ‘virtual int asIScriptContext::Prepare(asIScriptFunction*)’ [-fpermissive]
scons: *** [build/common/as_wrapper/AngelScript.o] Error 1
scons: building terminated because of errors.

したがって、基本的に、(コンパイラだと思います)GetFunctionIdByDeclで関数を見つけることができませんasIScriptModule。私はそれがそこにあるはずだと確信しています。

また、lin 242 のコードは次のとおりです。

int funcId = mod->GetFunctionIdByDecl(function);

wherefunctionは以前に a として宣言されてchar*おりmod、タイプはasIScriptModule *modです。

これは gcc 4.7.1 の問題かもしれないと思っていましたが、よくわかりません。

4

1 に答える 1

1

答えてくれた@chrisに感謝します。

ソース (angelscript.h 行 664) によると、GetFunctionIdByDecl は廃止されているため、使用するには #define AS_DEPRECATED が必要です。

于 2012-11-14T00:30:43.907 に答える