Fix for "undefined reference to `clock_gettime'" linking error on some Linux systems

git-svn-id: https://svn.eduke32.com/eduke32@2801 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2012-07-05 17:43:58 +00:00
parent 5b887587f3
commit 9a69b481cf
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ ifeq ($(PLATFORM),WINDOWS)
endif
else
ifeq ($(PLATFORM),LINUX)
LIBS+= -ldl
LIBS+= -ldl -lrt
endif
LIBS+= -pthread
ifneq (0,$(PROFILER))