Skip to content

Commit

Permalink
Remove _LONG_LONG from TR_COMPILE_DEFINITIONS on z
Browse files Browse the repository at this point in the history
We do not want the flag for z/OS, and on zLinux we get the flag via
OMR_PLATFORM_DEFINITIONS (see lower in the file).

Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
  • Loading branch information
dnakamura committed Apr 15, 2021
1 parent 2ccbf5e commit abd98f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/modules/platform/arch/s390.cmake
@@ -1,5 +1,5 @@
###############################################################################
# Copyright (c) 2017, 2020 IBM Corp. and others
# Copyright (c) 2017, 2021 IBM Corp. and others
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -24,7 +24,7 @@
# the distinction
set(TR_HOST_ARCH z)
set(TR_HOST_BITS 64)
list(APPEND TR_COMPILE_DEFINITIONS TR_HOST_S390 TR_TARGET_S390 _LONG_LONG)
list(APPEND TR_COMPILE_DEFINITIONS TR_HOST_S390 TR_TARGET_S390)

if(OMR_ENV_DATA64)
list(APPEND TR_COMPILE_DEFINITIONS TR_HOST_64BIT TR_TARGET_64BIT BITVECTOR_64BIT)
Expand Down

0 comments on commit abd98f3

Please sign in to comment.