Sehr nette Person die mir beim Einbauen und Aufsetzen des Servers geholfen hat. Kann man nur Empfehlen!
Beiträge von Jotaro
-
-
Hab nochmal tiefer nachgeschaut und anscheinend fehlen mir die Header der Standard C++ 4.2 Libraries unter /usr/include/c++/4.2
Konnte diese aus irgendeinem Grund nicht mit Putty herunterladen (oder bin einfach zu unwissend mit Putty) und habe erstmal ein Bitte melden Sie sich an, um diesen Link zu sehen. Thread eröffnet diesbezüglich.
Hoffentlich wird das Problem damit gelöst.
Außerden, danke an alle die bis jetzt geholfen haben! Ohne euch wäre ich immernoch nicht weiter gekommen!
-
Hey,
hat vielleicht irgendwer die Header für die Standard C++ 4.2 Libraries da?
Die sind ursprünglicherweise unter /usr/include/c++/ vorhanden, allerdings fehlen diese bei mir.
Und da es aus irgendeinem Grund nicht installiert werden kann via Putty (oder ich nichts dazu finde) würde ich mich freuen falls jemand diese zur Verfügung stellt!
Danke schonmal im Voraus!
-
Okay ich hab jetzt ein wenig drüber geschaut und mir die fehlernachricht genauer angeschaut
C- root@:/usr/home/Source/Server/libgame/src # gmake clean
- rm -f *.o
- rm -f ../lib/libgame.a
- root@:/usr/home/Source/Server/libgame/src # gmake -j4
- gmake ../lib/libgame.a
- gmake[1]: Entering directory '/usr/home/Source/Server/libgame/src'
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c grid.cc
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c attribute.cc
- c++CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c targa.cc
- : c++warning: : c++warning: argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]: warning
- argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]:
- argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]
- In file included from grid.cc:4:
- ./../../common/stl.h:12:10: fatal error: 'ext/functional' file not found
- #include <ext/functional>
- ^~~~~~~~~~~~~~~~
- 1 error generated.
- gmake[1]: *** [Makefile:35: grid.o] Error 1
- gmake[1]: Leaving directory '/usr/home/Source/Server/libgame/src'
- gmake: *** [Makefile:18: default] Error 2
Dieser Fehler + die nicht entstandene grid.o Datei bedeutet, dass der Fehler mit der grid.cc Datei passierte.
Die Linie:
Heißt, dass der Fehler spezifisch in der stl.h Datei in der Zeile 12 liegt mit dem
wenn ich das #include <ext/functional> entferne und dann probiere das zu compilen:
Code- root@:/usr/home/Source/Server/libgame/src # gmake clean
- rm -f *.o
- rm -f ../lib/libgame.a
- root@:/usr/home/Source/Server/libgame/src # gmake -j4
- gmake ../lib/libgame.a
- gmake[1]: Entering directory '/usr/home/Source/Server/libgame/src'
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c grid.cc
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c attribute.cc
- c++CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c targa.cc
- : warningc++: : c++: argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]warning: warning
- : argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]
- if [ ! -d ../lib ]; then mkdir ../lib; fi
- ar cru ../lib/libgame.a grid.o attribute.o targa.o
- ranlib ../lib/libgame.a
- chmod 700 ../lib/libgame.a
- gmake[1]: Leaving directory '/usr/home/Source/Server/libgame/src'
Kommt keine Fehlermeldung und die grid.o Datei ist dann auch vorhanden.
Bitte melden Sie sich an, um dieses Bild zu sehen.
Code beim Compilen:
Code- root@:/usr/home/Source/Server/libgame/src # gmake clean
- rm -f *.o
- rm -f ../lib/libgame.a
- root@:/usr/home/Source/Server/libgame/src # gmake -j4
- gmake ../lib/libgame.a
- gmake[1]: Entering directory '/usr/home/Source/Server/libgame/src'
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c grid.cc
- CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c attribute.cc
- c++CC -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c targa.cc
- : warningc++: : c++: argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]warning: warning
- : argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]
- if [ ! -d ../lib ]; then mkdir ../lib; fi
- ar cru ../lib/libgame.a grid.o attribute.o targa.o
- ranlib ../lib/libgame.a
- chmod 700 ../lib/libgame.a
- gmake[1]: Leaving directory '/usr/home/Source/Server/libgame/src'
Jetzt allerdings stellt sich die Frage ob irgendetwas damit gebrochen wurde, bzw. wie notwendig die <ext/functional> ist.
Weiß das vielleicht jemand?
-
Ich hab jetzt die von dir gepostete Makefile verwendet, allerdings kommt stattdessen diese Fehlermeldung
Hab ich irgendwie die falschen Dateien oder eine fehlerhafte Version?
-
Ich hab das mal ausprobiert, wenn ich alle CXX zu CC ändere kommt derselbe Fehler. Wenn ich allerdings bei der ersten Linie das "CXX = g++" mit "CC = g++" ersetze, kommt folgendes:
C- root@:/usr/home/Source/Server/libgame/src # gmake clean
- rm -f *.o
- rm -f ../lib/libgame.a
- root@:/usr/home/Source/Server/libgame/src # gmake -j4
- gmake ../lib/libgame.a
- gmake[1]: Entering directory '/usr/home/Source/Server/libgame/src'
- c++ -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c grid.cc
- c++ -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c attribute.cc
- c++c++c++ -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c targa.cc
- : : warningwarning: : c++: argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]warning
- : argument unused during compilation: '-mcpu=i686' [-Wunused-command-line-argument]
- In file included from grid.cc:4:
- ./../../common/stl.h:12:10: fatal error: 'ext/functional' file not found
- #include <ext/functional>
- ^~~~~~~~~~~~~~~~
- 1 error generated.
- gmake[1]: *** [Makefile:35: grid.o] Error 1
- gmake[1]: *** Waiting for unfinished jobs....
- gmake[1]: Leaving directory '/usr/home/Source/Server/libgame/src'
- gmake: *** [Makefile:18: default] Error 2
Jetzt sind allerdings auch die .o Dateien vorhanden:
Bitte melden Sie sich an, um dieses Bild zu sehen.
-
Hey,
ich bin auf folgendes Problem gestoßen und bin da ein wenig Ratlos. Sobald ich probiere die Dateien über Putty zu compilen spuckt er mir diesen fehler aus.
Code- root@:/usr/home/Source/Server/libgame/src # gmake clean
- rm -f *.o
- rm -f ../lib/libgame.a
- root@:/usr/home/Source/Server/libgame/src # gmake -j4
- gmake ../lib/libgame.a
- gmake[1]: Entering directory '/usr/home/Source/Server/libgame/src'
- g++ -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include -c grid.cc
- gmake[1]: g++: No such file or directory
- gmake[1]: *** [Makefile:35: grid.o] Error 127
- gmake[1]: Leaving directory '/usr/home/Source/Server/libgame/src'
- gmake: *** [Makefile:18: default] Error 2
- root@:/usr/home/Source/Server/libgame/src #
Jetzt frage ich mich nur ob der Fehler an der Makefile liegt oder ob ich etwas falsch installiert habe.
Im Code der Makefile steht drin:
Code- CXX = g++
- BIN_DIR = ../lib
- BIN = $(BIN_DIR)/libgame.a
- GCC_VERSION = $(shell $(CC) --version 2>&1 | grep "(GCC)" | cut -d' ' -f3 | cut -d'.' -f1)
- ifeq ($(GCC_VERSION), 4)
- CFLAGS = -Wall -O2 -pipe -mtune=i686 -fno-exceptions -I../include
- else
- CFLAGS = -Wall -O2 -pipe -mcpu=i686 -fno-exceptions -I../include
- endif
- LIBS =
- OBJFILES = grid.o attribute.o targa.o
- default:
- $(MAKE) $(BIN)
- $(BIN): $(OBJFILES)
- if [ ! -d $(BIN_DIR) ]; then mkdir $(BIN_DIR); fi
- ar cru $(BIN) $(OBJFILES) $(LIBS)
- ranlib $(BIN)
- chmod 700 $(BIN)
- clean:
- rm -f *.o
- rm -f $(BIN)
- dep:
- touch Depend
- $(CXX) $(CFLAGS) -MM *.cc > Depend
- $(OBJFILES):
- $(CXX) $(CFLAGS) -c $<
- include Depend
Im Ordner sind folgende Dateien vorhanden
Bitte melden Sie sich an, um dieses Bild zu sehen.
Ich verwende die Fliege Files Reworked und der Root läuft auf FreeBSD 11.3-RELEASE-p7
Kann mir da irgendwer weiterhelfen?
-
Perfekt, hat endlich geklappt.
Danke dir!
-
Naja, sobald ich die cryptopp compile und in den lib ordner einfüge und probiere die files dann zu compilen, kommen mir diese Fehler
Code- Severity Code Description Project File Line Suppression State
- Error LNK1120 6 unresolved externals UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\binary\Metin2Distribute.exe 1
- Error LNK2001 unresolved external symbol "public: virtual void __thiscall CryptoPP::StreamTransformation::ProcessLastBlock(unsigned char *,unsigned char const *,unsigned int)" (?ProcessLastBlock@StreamTransformation@CryptoPP@@UAEXPAEPBEI@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPack.obj) 1
- Error LNK2001 unresolved external symbol "public: virtual void __thiscall CryptoPP::StreamTransformation::ProcessLastBlock(unsigned char *,unsigned char const *,unsigned int)" (?ProcessLastBlock@StreamTransformation@CryptoPP@@UAEXPAEPBEI@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPackPolicy_CSHybridCrypt.obj) 1
- Error LNK2001 unresolved external symbol "public: virtual void __thiscall CryptoPP::StreamTransformation::ProcessLastBlock(unsigned char *,unsigned char const *,unsigned int)" (?ProcessLastBlock@StreamTransformation@CryptoPP@@UAEXPAEPBEI@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterBase.lib(cipher.obj) 1
- Error LNK2001 unresolved external symbol "public: __thiscall CryptoPP::StreamTransformationFilter::StreamTransformationFilter(class CryptoPP::StreamTransformation &,class CryptoPP::BufferedTransformation *,enum CryptoPP::BlockPaddingSchemeDef::BlockPaddingScheme,bool)" (??0StreamTransformationFilter@CryptoPP@@QAE@AAVStreamTransformation@1@PAVBufferedTransformation@1@W4BlockPaddingScheme@BlockPaddingSchemeDef@1@_N@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPack.obj) 1
- Error LNK2001 unresolved external symbol "public: __thiscall CryptoPP::StreamTransformationFilter::StreamTransformationFilter(class CryptoPP::StreamTransformation &,class CryptoPP::BufferedTransformation *,enum CryptoPP::BlockPaddingSchemeDef::BlockPaddingScheme,bool)" (??0StreamTransformationFilter@CryptoPP@@QAE@AAVStreamTransformation@1@PAVBufferedTransformation@1@W4BlockPaddingScheme@BlockPaddingSchemeDef@1@_N@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPackPolicy_CSHybridCrypt.obj) 1
- Error LNK2001 unresolved external symbol "bool (__cdecl* CryptoPP::g_pAssignIntToInteger)(class type_info const &,void *,void const *)" (?g_pAssignIntToInteger@CryptoPP@@3P6A_NABVtype_info@@PAXPBX@ZA) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPack.obj) 1
- Error LNK2001 unresolved external symbol "bool (__cdecl* CryptoPP::g_pAssignIntToInteger)(class type_info const &,void *,void const *)" (?g_pAssignIntToInteger@CryptoPP@@3P6A_NABVtype_info@@PAXPBX@ZA) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterPack.lib(EterPackPolicy_CSHybridCrypt.obj) 1
- Error LNK2001 unresolved external symbol "bool (__cdecl* CryptoPP::g_pAssignIntToInteger)(class type_info const &,void *,void const *)" (?g_pAssignIntToInteger@CryptoPP@@3P6A_NABVtype_info@@PAXPBX@ZA) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterBase.lib(cipher.obj) 1
- Error LNK2001 unresolved external symbol "public: __thiscall CryptoPP::Integer::Integer(char const *)" (??0Integer@CryptoPP@@QAE@PBD@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterBase.lib(cipher.obj) 1
- Error LNK2001 unresolved external symbol "public: __thiscall CryptoPP::Integer::Integer(unsigned char const *,unsigned int,enum CryptoPP::Integer::Signedness)" (??0Integer@CryptoPP@@QAE@PBEIW4Signedness@01@@Z) UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\EterBase.lib(cipher.obj) 1
- Error LNK2001 unresolved external symbol ___iob_func UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\libjpeg-6bMT.lib(jerror.obj) 1
-
Hey,
ich habe beim Compilen der Fliege files den folgenden Fehler
Code- Severity Code Description Project File Line Suppression State
- Error C1047 The object or library file '..\..\extern\library\Cryptopp_lib_release.lib' was created by a different version of the compiler than other objects like 'Distribute\AccountConnector.obj'; rebuild all objects and libraries with the same compiler UserInterface C:\Users\Jojo\Desktop\fliege\âsdas\Binary Source\vs_files\UserInterface\LINK 1
erhalten und habe mich informiert
Ich habe mir die neuste cryptopp version heruntergeladen und die cryptlib über VS als Release Win32 compiled. Allerdings funktioniert das einbauen bei mir nicht wirklich.
Hat irgendwer Tipps für mich?
-
reupload pls?
-
Hat jemand bereits Erfahrungen damit gemacht?
Does anyone have any experience with this system?
yes, people turn to me in discord, so there are no reviews here.
Is it possible to see some of the reviews (via gyazo)? Of course with a blurred out name.