Jump to content
  • 0

Compile Error with Latest rAthena Repo


HaARiZz

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   12
  • Joined:  01/13/12
  • Last Seen:  

Hi there,
I found that some error when I compile server on linux with latest repo.
Here I attach the error occur :

Spoiler

[rathena01@li1630-91 rathena]$ make clean server
make[1]: Entering directory `/home/rathena01/rathena/src/common'
        CLEAN   common
make[1]: Leaving directory `/home/rathena01/rathena/src/common'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/mt19937ar'
        CLEAN   mt19937ar
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/mt19937ar'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/libconfig'
        CLEAN   libconfig
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/libconfig'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/yaml-cpp'
        CLEAN   yaml-cpp
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/yaml-cpp'
make[1]: Entering directory `/home/rathena01/rathena/src/login'
        CLEAN   login
make[1]: Leaving directory `/home/rathena01/rathena/src/login'
make[1]: Entering directory `/home/rathena01/rathena/src/char'
        CLEAN   char
make[1]: Leaving directory `/home/rathena01/rathena/src/char'
make[1]: Entering directory `/home/rathena01/rathena/src/map'
        CLEAN   map
make[1]: Leaving directory `/home/rathena01/rathena/src/map'
make[1]: Entering directory `/home/rathena01/rathena/src/tool'
        CLEAN   tool
make[1]: Leaving directory `/home/rathena01/rathena/src/tool'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/mt19937ar'
        CC      mt19937ar.c
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/mt19937ar'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/libconfig'
        MKDIR   obj
        CC      grammar.c
        CC      libconfig.c
        CC      scanctx.c
        CC      scanner.c
        CC      strbuf.c
        AR      obj/libconfig.a
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/libconfig'
make[1]: Entering directory `/home/rathena01/rathena/3rdparty/yaml-cpp'
        MKDIR   obj/src/contrib
        CXX     src/scantoken.cpp
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanDocStart()’:
src/scantoken.cpp:68:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanDocEnd()’:
src/scantoken.cpp:81:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanFlowStart()’:
src/scantoken.cpp:94:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanFlowEnd()’:
src/scantoken.cpp:120:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanFlowEntry()’:
src/scantoken.cpp:147:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanBlockEntry()’:
src/scantoken.cpp:167:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanKey()’:
src/scantoken.cpp:186:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanValue()’:
src/scantoken.cpp:215:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanAnchorOrAlias()’:
src/scantoken.cpp:231:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanPlainScalar()’:
src/scantoken.cpp:314:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanQuotedScalar()’:
src/scantoken.cpp:355:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
src/scantoken.cpp: In member function ‘void YAML::Scanner::ScanBlockScalar()’:
src/scantoken.cpp:383:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = INPUT.mark();
        ^
        CXX     src/memory.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from src/memory.cpp:2:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from src/memory.cpp:2:0:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        CXX     src/exp.cpp
        CXX     src/emit.cpp
        CXX     src/null.cpp
        CXX     src/tag.cpp
        CXX     src/nodeevents.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from src/nodeevents.cpp:4:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from src/nodeevents.cpp:4:0:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        CXX     src/stream.cpp
        CXX     src/simplekey.cpp
        CXX     src/singledocparser.cpp
        CXX     src/parser.cpp
        CXX     src/nodebuilder.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from src/nodebuilder.cpp:5:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from src/nodebuilder.cpp:5:0:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        CXX     src/directives.cpp
        CXX     src/scanner.cpp
src/scanner.cpp: In member function ‘void YAML::Scanner::ThrowParserException(const string&) const’:
src/scanner.cpp:379:8: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   Mark mark = Mark::null_mark();
        ^
        CXX     src/node_data.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from src/node_data.cpp:7:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from src/node_data.cpp:7:0:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
src/node_data.cpp: In member function ‘void YAML::detail::node_data::set_mark(const YAML::Mark&)’:
src/node_data.cpp:31:42: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
 void node_data::set_mark(const Mark& mark) { m_mark = mark; }
                                          ^
src/node_data.cpp: In member function ‘void YAML::detail::node_data::set_type(YAML::NodeType::value)’:
src/node_data.cpp:33:46: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
 void node_data::set_type(NodeType::value type) {
                                              ^
src/node_data.cpp: In member function ‘void YAML::detail::node_data::set_tag(const string&)’:
src/node_data.cpp:64:47: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
 void node_data::set_tag(const std::string& tag) { m_tag = tag; }
                                               ^
src/node_data.cpp: In member function ‘void YAML::detail::node_data::set_style(YAML::EmitterStyle::value)’:
src/node_data.cpp:66:52: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
 void node_data::set_style(EmitterStyle::value style) { m_style = style; }
                                                    ^
src/node_data.cpp: In member function ‘void YAML::detail::node_data::set_scalar(const string&)’:
src/node_data.cpp:73:53: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
 void node_data::set_scalar(const std::string& scalar) {
                                                     ^
        CXX     src/node.cpp
        CXX     src/scanscalar.cpp
        CXX     src/contrib/graphbuilder.cpp
        CXX     src/contrib/graphbuilderadapter.cpp
        CXX     src/exceptions.cpp
        CXX     src/ostream_wrapper.cpp
src/ostream_wrapper.cpp: In member function ‘void YAML::ostream_wrapper::write(const string&)’:
src/ostream_wrapper.cpp:21:51: warning: declaration of ‘str’ shadows a member of 'this' [-Wshadow]
 void ostream_wrapper::write(const std::string& str) {
                                                   ^
src/ostream_wrapper.cpp: In member function ‘void YAML::ostream_wrapper::write(const char*, std::size_t)’:
src/ostream_wrapper.cpp:34:62: warning: declaration of ‘str’ shadows a member of 'this' [-Wshadow]
 void ostream_wrapper::write(const char* str, std::size_t size) {
                                                              ^
        CXX     src/emitterstate.cpp
        CXX     src/convert.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from include/yaml-cpp/node/impl.h:13,
                 from include/yaml-cpp/node/convert.h:18,
                 from src/convert.cpp:3:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from include/yaml-cpp/node/impl.h:13:0,
                 from include/yaml-cpp/node/convert.h:18,
                 from src/convert.cpp:3:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        CXX     src/emitter.cpp
        CXX     src/emitfromevents.cpp
        CXX     src/regex_yaml.cpp
        CXX     src/emitterutils.cpp
        CXX     src/scantag.cpp
        CXX     src/binary.cpp
        CXX     src/parse.cpp
In file included from include/yaml-cpp/node/detail/node.h:14:0,
                 from include/yaml-cpp/node/impl.h:13,
                 from src/parse.cpp:7:
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from include/yaml-cpp/node/impl.h:13:0,
                 from src/parse.cpp:7:
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        AR      obj/yaml-cpp.a
make[1]: Leaving directory `/home/rathena01/rathena/3rdparty/yaml-cpp'
make[1]: Entering directory `/home/rathena01/rathena/src/common'
        MKDIR   obj
        CXX     core.cpp
        CC      socket.c
        CC      timer.c
        CC      db.c
        CC      nullpo.c
        CC      malloc.c
        CC      showmsg.c
        CC      strlib.c
        CC      utils.c
        CXX     utilities.cpp
        CC      grfio.c
        CC      mapindex.c
        CC      ers.c
        CC      md5calc.c
        CXX     core.cpp
        CC      socket.c
        CC      malloc.c
        CC      random.c
        CC      des.c
        CC      conf.c
        CC      thread.c
        CC      mutex.c
        CC      raconf.c
        CC      mempool.c
        CC      msg_conf.c
        CC      cli.c
        CC      sql.c
        CXX     yamlwrapper.cpp
In file included from ../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:14:0,
                 from ../../3rdparty/yaml-cpp/include/yaml-cpp/node/impl.h:13,
                 from ../../3rdparty/yaml-cpp/include/yaml-cpp/yaml.h:17,
                 from yamlwrapper.h:32,
                 from yamlwrapper.cpp:23:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_mark(const YAML::Mark&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:33:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pData->set_mark(mark); }
                                   ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_type(YAML::NodeType::value)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:34:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) { m_pData->set_type(type); }
                                       ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_tag(const string&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:35:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) { m_pData->set_tag(tag); }
                                        ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_scalar(const string&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:37:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) { m_pData->set_scalar(scalar); }
                                              ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h: In member function ‘void YAML::detail::node_ref::set_style(YAML::EmitterStyle::value)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:38:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) { m_pData->set_style(style); }
                                             ^
In file included from ../../3rdparty/yaml-cpp/include/yaml-cpp/node/impl.h:13:0,
                 from ../../3rdparty/yaml-cpp/include/yaml-cpp/yaml.h:17,
                 from yamlwrapper.h:32,
                 from yamlwrapper.cpp:23:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_mark(const YAML::Mark&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:69:35: warning: declaration of ‘mark’ shadows a member of 'this' [-Wshadow]
   void set_mark(const Mark& mark) { m_pRef->set_mark(mark); }
                                   ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_type(YAML::NodeType::value)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:71:39: warning: declaration of ‘type’ shadows a member of 'this' [-Wshadow]
   void set_type(NodeType::value type) {
                                       ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_scalar(const string&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:80:46: warning: declaration of ‘scalar’ shadows a member of 'this' [-Wshadow]
   void set_scalar(const std::string& scalar) {
                                              ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_tag(const string&)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:84:40: warning: declaration of ‘tag’ shadows a member of 'this' [-Wshadow]
   void set_tag(const std::string& tag) {
                                        ^
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h: In member function ‘void YAML::detail::node::set_style(YAML::EmitterStyle::value)’:
../../3rdparty/yaml-cpp/include/yaml-cpp/node/detail/node.h:90:45: warning: declaration of ‘style’ shadows a member of 'this' [-Wshadow]
   void set_style(EmitterStyle::value style) {
                                             ^
        AR      obj/common.a
make[1]: Leaving directory `/home/rathena01/rathena/src/common'
make[1]: Entering directory `/home/rathena01/rathena/src/login'
        MKDIR   obj
        CXX     account.cpp
        CXX     ipban.cpp
        CXX     loginchrif.cpp
        CXX     loginclif.cpp
        CXX     logincnslif.cpp
        CXX     login.cpp
        CXX     loginlog.cpp
        LD      login-server
make[1]: Leaving directory `/home/rathena01/rathena/src/login'
make[1]: Entering directory `/home/rathena01/rathena/src/char'
        MKDIR   obj
        CXX     char_clif.cpp
        CXX     char_cnslif.cpp
        CXX     char.cpp
        CXX     char_logif.cpp
        CXX     char_mapif.cpp
        CXX     int_achievement.cpp
        CXX     int_auction.cpp
        CXX     int_clan.cpp
        CXX     int_elemental.cpp
        CXX     inter.cpp
        CXX     int_guild.cpp
int_guild.cpp:129:11: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Save guild request ("CL_BOLD"%d"CL_RESET" - flag 0x%x).",g->guild_id, flag);
           ^
int_guild.cpp:129:40: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Save guild request ("CL_BOLD"%d"CL_RESET" - flag 0x%x).",g->guild_id, flag);
                                        ^
        CXX     int_homun.cpp
        CXX     int_mail.cpp
        CXX     int_mercenary.cpp
        CXX     int_party.cpp
int_party.cpp:126:11: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Save party request ("CL_BOLD"%d"CL_RESET" - %s).\n", party_id, p->name);
           ^
int_party.cpp:126:40: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Save party request ("CL_BOLD"%d"CL_RESET" - %s).\n", party_id, p->name);
                                        ^
int_party.cpp:200:11: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Load party request ("CL_BOLD"%d"CL_RESET")\n", party_id);
           ^
int_party.cpp:200:40: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
  ShowInfo("Load party request ("CL_BOLD"%d"CL_RESET")\n", party_id);
                                        ^
        CXX     int_pet.cpp
        CXX     int_quest.cpp
        CXX     int_storage.cpp
        LD      char-server
make[1]: Leaving directory `/home/rathena01/rathena/src/char'
make[1]: Entering directory `/home/rathena01/rathena/src/map'
        MKDIR   obj
        CXX     achievement.cpp
        CXX     atcommand.cpp
        CXX     battle.cpp
battle.cpp:8585:15: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
   ShowWarning("conf/battle/feature.conf:feature.auction is enabled but it is not stable on PACKETVER "EXPAND_AND_QUOTE(PACKETVER)", disabling...\n");
               ^
        CXX     battleground.cpp
        CXX     buyingstore.cpp
        CXX     cashshop.cpp
        CXX     channel.cpp
        CXX     chat.cpp
        CXX     chrif.cpp
        CXX     clan.cpp
        CXX     clif.cpp
        CXX     date.cpp
        CXX     duel.cpp
        CXX     elemental.cpp
        CXX     guild.cpp
        CXX     homunculus.cpp
        CXX     instance.cpp
        CXX     intif.cpp
        CXX     itemdb.cpp
        CXX     log.cpp
        CXX     mail.cpp
        CXX     map.cpp
        CXX     mapreg.cpp
        CXX     mercenary.cpp
        CXX     mob.cpp
        CXX     npc_chat.cpp
        CXX     npc.cpp (custom rule)
        CXX     party.cpp
        CXX     path.cpp
        CXX     pc.cpp
        CXX     pc_groups.cpp
        CXX     pet.cpp
        CXX     quest.cpp
        CXX     script.cpp
        CXX     searchstore.cpp
        CXX     skill.cpp
        CXX     status.cpp
        CXX     storage.cpp
        CXX     trade.cpp
        CXX     unit.cpp
        CXX     vending.cpp
        LD      map-server
make[1]: Leaving directory `/home/rathena01/rathena/src/map'
building conf/import, conf/msg_conf/import and db/import folder...

Please fix this problem. 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

what OS are you using and have you installed the needed things?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   12
  • Joined:  01/13/12
  • Last Seen:  

1 hour ago, crazyarashi said:

what OS are you using and have you installed the needed things?

I'm using CentOS 7 64-bit. Yes I have installed all the needed. Before this nothing happen. I want to setup new server with latest repo then that error occur.

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

10 hours ago, HaARiZz said:

I'm using CentOS 7 64-bit. Yes I have installed all the needed. Before this nothing happen. I want to setup new server with latest repo then that error occur.

cant reproduce it dont forget to install G++ :))

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   12
  • Joined:  01/13/12
  • Last Seen:  

14 hours ago, crazyarashi said:

cant reproduce it dont forget to install G++ :))

I have install all the required dependencies. 

EDITED :
For your information I'm using latest version of CentOS which is CentOS Linux release 7.4.1708 (Core).
I also have installed gcc++ which is mentioned by @Secrets on Rathena-now-requires-g-to-compile-on-linux
Unfortunately, this problem still occur.

LATEST UPDATE:
Problem Solved for Setup Server using Latest CentOS Version with Latest Repo from rAthena server file.

#P/S : Please close this thread!

Edited by HaARiZz
Problem Solved!
Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

On 26/12/2017 at 2:40 AM, HaARiZz said:

LATEST UPDATE:
Problem Solved for Setup Server using Latest CentOS Version with Latest Repo from rAthena server file.

It'd be helpful to other users if you detailed how you solved your problem.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...