Skip to content

Commit

Permalink
Merge pull request #7648 from pshipton/umaxlc
Browse files Browse the repository at this point in the history
Fix AIX logic error for xlclang++ / xlc++
  • Loading branch information
jdmpapin authored Feb 10, 2025
2 parents 6086f94 + cf5b6cb commit 9e47808
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions omrmakefiles/rules.aix.mk
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ ifeq (openxl,$(OMR_TOOLCHAIN))
# openxl options
GLOBAL_CXXFLAGS+=-fno-exceptions
else ifneq (,$(findstring xlclang++,$(notdir $(CXX))))
# xlc++ options
GLOBAL_CXXFLAGS+=-q mbcs -qinfo=pro
else
# xlclang++ options
GLOBAL_CXXFLAGS+=-qxlcompatmacros -fno-exceptions
ifeq (0,$(OMR_RTTI))
GLOBAL_CXXFLAGS+=-fno-rtti
endif
else
# xlc++ options
GLOBAL_CXXFLAGS+=-q mbcs -qinfo=pro
endif

ifdef I5_VERSION
Expand Down

0 comments on commit 9e47808

Please sign in to comment.