mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Makefile.shared: don't link with libsupc++ on linux.
It works perfectly fine without it for me, and including it for no reason is just an annoyance to other people building from source. git-svn-id: https://svn.eduke32.com/eduke32@2708 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5b387f7a08
commit
7cd44d6cdb
1 changed files with 7 additions and 3 deletions
|
@ -13,9 +13,6 @@ endif
|
|||
|
||||
SDL_FRAMEWORK = 0
|
||||
|
||||
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
|
||||
STDCPPLIB=-lsupc++
|
||||
|
||||
# Detect machine architecture
|
||||
SYSARCH?=$(strip $(shell uname -m))
|
||||
|
||||
|
@ -86,6 +83,13 @@ ifndef PLATFORM
|
|||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM),LINUX)
|
||||
STDCPPLIB=
|
||||
else
|
||||
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
|
||||
STDCPPLIB= -lsupc++
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM),LINUX)
|
||||
RENDERTYPE=SDL
|
||||
BUILDCFLAGS+= -DHAVE_INTTYPES
|
||||
|
|
Loading…
Reference in a new issue