Skip to content

Commit

Permalink
Merge pull request #7376 from dnakamura/aix_jit
Browse files Browse the repository at this point in the history
Add cmake support for building the jit on aix
  • Loading branch information
pshipton authored Oct 11, 2019
2 parents 562c43c + 036036c commit fe39103
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions runtime/compiler/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,19 @@ elseif(OMR_OS_WINDOWS)
-DSUPPORTS_THREAD_LOCAL
-DWINDOWS
)
elseif(OMR_OS_AIX)
set(J9_SHAREDFLAGS
-DAIXPPC
-DRS6000
-D_XOPEN_SOURCE_EXTENDED=1
-D_ALL_SOURCE
-DSUPPORTS_THREAD_LOCAL
)
if(OMR_ENV_DATA64)
set(J9_SHAREDFLAGS -q64)
else()
set(J9_SHAREDFLAGS -q32)
endif()
else()
message(SEND_ERROR "unsupported platform")
endif()
Expand Down

0 comments on commit fe39103

Please sign in to comment.