7h364m3 Posted January 4, 2014 Report Share Posted January 4, 2014 I have a question here.When cmake ask me to choose which version of visual studio i use i cant see in the list "visual studio express 2013" or "visiual studio 13" the highest is visual studio 12 ? What shuld i do ? download the version for 2012 ? Link to comment Share on other sites More sharing options...
Subv Posted January 4, 2014 Report Share Posted January 4, 2014 Visual Studio 2013 is Visual Studio 12 Link to comment Share on other sites More sharing options...
7h364m3 Posted January 4, 2014 Report Share Posted January 4, 2014 As i thought. Thanks Link to comment Share on other sites More sharing options...
Aokromes Posted January 4, 2014 Report Share Posted January 4, 2014 Even requierements have changed, TC still compiles with wiki, you only need to be sure of use gcc 6.0.3, also, the error message comes from gcc not from TC, the problem very likely comes from the kernel your VPS uses. Link to comment Share on other sites More sharing options...
Kylroi Posted January 4, 2014 Report Share Posted January 4, 2014 Even requierements have changed, TC still compiles with wiki, you only need to be sure of use gcc 6.0.3, also, the error message comes from gcc not from TC, the problem very likely comes from the kernel your VPS uses. You mean ACE 6.0.3, since gcc isn't even to the 5.x series (yet). Link to comment Share on other sites More sharing options...
LaBlazer Posted January 5, 2014 Report Share Posted January 5, 2014 (edited) Ok, i tried to update to gcc 4.7.3, i done this: 1. I reinstalled my vps to Ubuntu 12.04 x64 2. Installed all needed apps with sudo apt-get install build-essential autoconf libtool gcc g++ make cmake git-core patch wget links zip unzip unrar sudo apt-get install openssl libssl-dev mysql-server mysql-client libmysqlclient15-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev and also updated libncurses5-dev sudo apt-get install libncurses5-dev ...and libace-dev sudo apt-get install libace-dev 3. Downloaded test build of gcc4.7 sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get install gcc-4.7 g++-4.7 first the command "sudo add-apt-repository" didnt work, but i find somewhere, that this sudo apt-get install python-software-properties fixes it, so i downloaded it and it worked... 4. Then i updated alternatives of gcc ane set gcc4.7 as default compiler sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.6 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.7 sudo update-alternatives --config gcc (in that little interface i selected gcc4.7) 5. Now, when i type "gcc -v" it returns this: "gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-2ubuntu1~12.04)", so i think the update was successful. But when i download ACE 6.0.3 (as it is in wiki), configure it and use command "make", mysterious errors show again... it is compiling +/- 25 minutes and then error shows up... I tried it also with "make -j 4" (i have 4 cores) or "make -j4" but again that same problem... I would be very grateful if someone with linux knowledge updated the linux tutorial on wiki or posted it on forum... P.S: Sorry for mistakes Edited January 5, 2014 by LaBlazer Link to comment Share on other sites More sharing options...
Aokromes Posted January 5, 2014 Report Share Posted January 5, 2014 Again: the error message comes from gcc not from TC, the problem very likely comes from the kernel your VPS uses. Link to comment Share on other sites More sharing options...
aaron126 Posted January 10, 2014 Report Share Posted January 10, 2014 "The ordinal 354 could not be located in the dynamic link library LIBEAY32.dll" Yes, I'm aware that this would mean that my libeay32.dll would be missing, but the thing is it's not. Link to comment Share on other sites More sharing options...
Paradox Posted January 10, 2014 Report Share Posted January 10, 2014 What version of openssl? Link to comment Share on other sites More sharing options...
Blackhat Posted January 10, 2014 Report Share Posted January 10, 2014 Ensure that you installed a version of OpenSSL that isn't a light version and matches 32-bit or 64-bit (for your computer.) After that, retry. Link to comment Share on other sites More sharing options...
aaron126 Posted January 10, 2014 Report Share Posted January 10, 2014 What version of openssl? 1.0.1f Ensure that you installed a version of OpenSSL that isn't a light version and matches 32-bit or 64-bit (for your computer.) After that, retry. no it's not the light version, I installed it earlier today. The most strange part is that I have an older compile in a different folder that starts perfectly fine (however it's running without libeay32.dll) EDIT: It appears as though I forgot about the ssleay32.dll, sorry for wasting your time. Link to comment Share on other sites More sharing options...
Axl Gois Posted January 11, 2014 Report Share Posted January 11, 2014 I have a problem in compiling ACE on CentOS6: ../configure --disable-ssl Setting to on: checking for mutex timeouts .. Just do not give passes, what should I do? Link to comment Share on other sites More sharing options...
Axl Gois Posted January 12, 2014 Report Share Posted January 12, 2014 (edited) http://puu.sh/6hZ1E.png CMakeFiles/worldserver.dir/CommandLine/CliRunnable.cpp.o: In function `CliRunnable::run()': CliRunnable.cpp:(.text+0x185): undefined reference to `readline' CliRunnable.cpp:(.text+0x18d): undefined reference to `rl_complete' CliRunnable.cpp:(.text+0x19b): undefined reference to `rl_bind_key' CliRunnable.cpp:(.text+0x35e): undefined reference to `add_history' collect2: ld returned 1 exit status make[2]: *** [src/server/worldserver/worldserver] Error 1 make[1]: *** [src/server/worldserver/CMakeFiles/worldserver.dir/all] Error 2 Edited January 12, 2014 by Axl Gois Link to comment Share on other sites More sharing options...
Paradox Posted January 12, 2014 Report Share Posted January 12, 2014 obviously, you need to install the readline library... Did you even read the linux how to on the wiki? Link to comment Share on other sites More sharing options...
Axl Gois Posted January 12, 2014 Report Share Posted January 12, 2014 There was already installed, or is not either of the two below? http://puu.sh/6i2gr.png http://puu.sh/6i2hV.png Link to comment Share on other sites More sharing options...
Aokromes Posted January 12, 2014 Report Share Posted January 12, 2014 Try libncurses5-dev 1 Link to comment Share on other sites More sharing options...
Axl Gois Posted January 12, 2014 Report Share Posted January 12, 2014 No such dependence exists in the CentOS repos :s How can I get there? Link to comment Share on other sites More sharing options...
Kylroi Posted January 12, 2014 Report Share Posted January 12, 2014 No such dependence exists in the CentOS repos :s How can I get there? Try "yum search ncurses" to see what it lists. Link to comment Share on other sites More sharing options...
nick90 Posted January 21, 2014 Report Share Posted January 21, 2014 Hello, (excuse my bad English) I did all steps with installation and when click on authserver.conf or worldserver.conf I get 0x000007b - I reinstalled core and used MySQL 5.6 - again this error, after this I used 5.5 and same this error. I'm use: Windows 8 Pro machine with 6gb RAM 1TB HDD 1gb video card installed VIsual studio 2012, get GetExtension, Heidisql ( showed in http://collab.kpsn.org/display/tc/How-to_Win Cmake 2.8.12 OpenSSL v1.0.1f , and another thing when I installed MySQL I didn't see Launch the MySQL Instance Configuration Wizard, re-isntaled it around 5-6 times and again didn't see it. Link to comment Share on other sites More sharing options...
Paradox Posted January 21, 2014 Report Share Posted January 21, 2014 huh? WTF are you trying to do? .conf is a text based config file, how does that lead to an error, or have anything to do with an SQL client or server? Link to comment Share on other sites More sharing options...
nick90 Posted January 21, 2014 Report Share Posted January 21, 2014 I mean authserver.exe or worldserver.exe when try to start i got this error, i used all versions between mysql 5.1 -5.6 on mqsql and nothing same error.I forgot to say i use instalation for 335 Link to comment Share on other sites More sharing options...
Aokromes Posted January 21, 2014 Report Share Posted January 21, 2014 Since you fail to post startup logs i can't be sure, but for sure your CLIENT mysql libs are under 5.1 Link to comment Share on other sites More sharing options...
lacker109 Posted January 22, 2014 Report Share Posted January 22, 2014 I compile and I get this strange error. Help? Error 1 error MSB6006: "cmd.exe" exited with code 1. C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V110Microsoft.CppCommon.targets 172 5 ZERO_CHECK Error 5 error MSB6006: "cmd.exe" exited with code 1. C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V110Microsoft.CppCommon.targets 172 5 ALL_BUILD Error 6 error MSB3073: The command "setlocal "CMake 2.8bincmake.exe" -DBUILD_TYPE=Release -P cmake_install.cmake if %errorlevel% neq 0 goto :cmEnd :cmEnd endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone :cmErrorLevel exit /b %1 :cmDone if %errorlevel% neq 0 goto :VCEnd :VCEnd" exited with code 1. C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V110Microsoft.CppCommon.targets 134 5 INSTALL Error 2 error LNK1107: invalid or corrupt file: cannot read at 0x2B0 D:filenameBuildOpenSSL-Win32ssleay32.dll 1 1 libmysql Error 3 error LNK1107: invalid or corrupt file: cannot read at 0x2B0 D:filenameBuildOpenSSL-Win32ssleay32.dll 1 1 authserver Error 4 error LNK1107: invalid or corrupt file: cannot read at 0x2B0 D:filenameBuildOpenSSL-Win32ssleay32.dll 1 1 worldserver Link to comment Share on other sites More sharing options...
Kylroi Posted January 22, 2014 Report Share Posted January 22, 2014 OpenSSL is not (properly) installed. Link to comment Share on other sites More sharing options...
lacker109 Posted January 22, 2014 Report Share Posted January 22, 2014 (edited) I re-installed openssl and did cmake again and now I am re-compiling/building. Edited January 22, 2014 by lacker109 Link to comment Share on other sites More sharing options...
Recommended Posts