Skip to content

Commit

Permalink
Fix crossgen2 armel build (#42811)
Browse files Browse the repository at this point in the history
Build fails with libjitinterface_armel.so and libclrjit_unix_armel_x64.so was not found after #41126.

Signed-off-by: Timur <t.mustafin@partner.samsung.com>
  • Loading branch information
t-mustafin authored Oct 21, 2020
1 parent 095539f commit c06d053
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eng/native/configurecompiler.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,11 @@ elseif (CLR_CMAKE_HOST_ARCH_I386)
set(ARCH_HOST_NAME x86)
add_definitions(-DHOST_X86)
elseif (CLR_CMAKE_HOST_ARCH_ARM)
set(ARCH_HOST_NAME arm)
if (ARM_SOFTFP)
set(ARCH_HOST_NAME armel)
else ()
set(ARCH_HOST_NAME arm)
endif ()
add_definitions(-DHOST_ARM)
elseif (CLR_CMAKE_HOST_ARCH_ARM64)
set(ARCH_HOST_NAME arm64)
Expand Down

0 comments on commit c06d053

Please sign in to comment.