EOSERV Forum > EOSERV > Compiling EOSERV latest version
Page: << 1 >>
Compiling EOSERV latest version
Author Message
Post #199241 Compiling EOSERV latest version

Hello guys! 

I have been trying to compile eoserv for a long time now, but i can't manage to get it working. 

I've never programed in C/C++, I tried to follow the published guide several times without luck.

I'm not sure what I could be doing wrong.

Could someone enumerate me what do I need to compile Eoserv? 

Thanks alot and sorry for the noobie question but I really want to see how it's made and touch things

Sorry for my disturbing English (not my native language)

8 years, 11 weeks ago
Post #199243 Re: Compiling EOSERV latest version

Good luck, the guide is missing steps/ files from what I've seen.
https://eoserv.net/wiki/EOSERV_From_Scratch

---
EO Resources/Guides: â—„ eobud.boards.net â–º
8 years, 11 weeks ago
Post #199249 Re: Compiling EOSERV latest version

@Kardnay  You say you tried following "the published guide", are you talking about the one shayne linked? If not, try that. If that doesn't work, tell us where you get stuck, what errors you get, etc.


On the off chance you're (or someone visiting this thread later is) using linux:

1. Install the dependencies using your package manager

    sudo pacman -S base-devel cmake svn sqlite3

2. Check out the source code using svn

    svn checkout svn://eoserv.net/eoserv/trunk/ eoserv
cd eoserv

3. Create a build directory and run cmake

    mkdir build; cd build
cmake -G "Unix Makefiles" ..

4. Run make to build the source

    make
8 years, 11 weeks ago
Page: << 1 >>

EOSERV Forum > EOSERV > Compiling EOSERV latest version