• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Compiling OTX 2

potinho

Advanced OT User
Joined
Oct 11, 2009
Messages
1,402
Solutions
17
Reaction score
150
Location
Brazil
Good afternoon everyone, how are you?

To solve most of my problems with my server, I finally decided to migrate it to Linux platform (Using Ubuntu 18), but I'm having some problems to compile, current problem follows:

administrator@extremeot:~/sources$ make -j $(nproc)
Makefile:10: *** missing separator. Stop.


My makefile:

1638733285028.png


Can u guys help me to fix?
 
Last edited:
Not : administrator@extremeot:~/sources$ make -j $(nproc)

This command use: make -j 1

Where 1 is your core used in server (1 or 2 or 3 or 4 or 8)
 
Not : administrator@extremeot:~/sources$ make -j $(nproc)

This command use: make -j 1

Where 1 is your core used in server (1 or 2 or 3 or 4 or 8)
same error
Post automatically merged:

I got it using: sh ./autogen.sh && ./configure --enable-server-diag --enable-mysql --enable-groundcache --enable-root-permission && make -j 2

But now got another error:

1638748077089.png
 
Last edited:
Only give this error when try to compile in 77 version (using -D_MULTIPLATFORM77), if i use -D_MULTIPLATFORM76 or -D_MULTIPLATFORM74, works fine.
 
Last edited:
same error
Post automatically merged:

I got it using: sh ./autogen.sh && ./configure --enable-server-diag --enable-mysql --enable-groundcache --enable-root-permission && make -j 2

But now got another error:

View attachment 63831
You have to escape the quotes: \" GIT REPO \". For the rsa errors, you're probably just using a newer openssl version.
 
Back
Top