Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

nekonomicon/Parabot

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
bot
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Parabot for Half-Life

Human-like artificial player for Half-Life and some other games on GoldSrc and Xash3D game engines.

How to build

Windows

Visual Studio

TODO

MinGW

	$ cd dlls
	$ make

Linux/OS X

	$ cd dlls
	$ make

*BSD

	% cd dlls
	% gmake

Android

Look android/build.sh script.

GNU Make build options

PB_64BIT - 64-bit build(Actually for amd64/aarch64)

DEBUG - Debug build.

AGGR_OPT - Aggressive optimizations.

SIZE_OPT - Size optimizations.

LTO - Link-Time optimization(required gold).

NO_EXCEPTIONS - Cut any debug information(frame-pointers, exception and unwind tables).

STATIC_GCCLIBS - static link with libgcc and libstd++(Actually on linux for portable builds when using gcc).

Example

	$ make PB_64BIT=0 DEBUG=0 AGGR_OPT=1 NO_EXCEPTIONS=1