HDFS-8922. Link the native_mini_dfs test library with libdl, since IBM Java requires it (Ayappan via Colin P. McCabe)

(cherry picked from commit 7642f64c24)
This commit is contained in:
Colin Patrick Mccabe 2015-08-20 13:57:32 -07:00
parent b085c5ef6f
commit a0450b96a2
2 changed files with 4 additions and 0 deletions

View File

@ -847,6 +847,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8908. TestAppendSnapshotTruncate may fail with IOException: Failed to
replace a bad datanode. (Tsz Wo Nicholas Sze via yliu)
HDFS-8922. Link the native_mini_dfs test library with libdl, since IBM Java
requires it (Ayappan via Colin P. McCabe)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -144,6 +144,7 @@ add_library(native_mini_dfs
)
target_link_libraries(native_mini_dfs
${JAVA_JVM_LIBRARY}
${LIB_DL}
${OS_LINK_LIBRARIES}
)