Skip to content

Commit

Permalink
Merge pull request #2129 from jwillemsen/jwi-qnx
Browse files Browse the repository at this point in the history
Changes for QNX 7.1
  • Loading branch information
jwillemsen authored Sep 19, 2023
2 parents ef21d60 + 1e2da31 commit c210fe1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ACE/include/makeinclude/platform_qnx_gcc.GNU
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ debug ?= 1
optimize ?= 0
threads ?= 1
pipes ?= 0
c++std ?= gnu++14

CCFLAGS += -fexceptions
LDFLAGS += -fexceptions
Expand All @@ -23,8 +24,10 @@ ifeq ($(optimize),1)
OCFLAGS += -O3
endif #optimize

DLD = $(CXX)
LD = $(CXX)
CC ?= qcc
CXX ?= q++
DLD = $(CXX)
LD = $(CXX)

LIBS += -lsocket -lstdc++ -lm

Expand Down

0 comments on commit c210fe1

Please sign in to comment.