Hy Moritz, thanks for the answer. 
Building the rexx.img consists of these parts:
 
# Build the rexx.img file
add_custom_command(OUTPUT ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/rexx.img
         COMMAND $<TARGET_FILE:rexximage>
           DEPENDS rexximage rxapi rexxutil ${image_class_files} ${platform_rexx_img_depends}
           WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
add_custom_target(rexx_img ALL DEPENDS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/rexx.img)
install(PROGRAMS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/rexx.img COMPONENT Core DESTINATION ${INSTALL_EXECUTABLE_DIR} PERMISSIONS OWNER_EXECUTE GROUP_EXECUTE WORLD_EXECUTE OWNER_READ GROUP_READ WORLD_READ)
 
 
It seams the problem occurs when adding the custom target. What do you mean to try to run rexximage on Android. Just to execute the rexximage file?
 
Klemens
 
Gesendet: Dienstag, 09. Februar 2016 um 13:32 Uhr
Von: "Moritz Hoffmann" <[email protected]>
An: "Open Object Rexx Developer Mailing List" <[email protected]>
Betreff: Re: [Oorexx-devel] oorexxforandroid - rexx.img
 
On Tue, Feb 9, 2016 at 7:19 AM, <[email protected]> wrote:
when I execute the cmake build for android-19 there is a strange error when creating the rexx.img file. 
Does anybody have an idea where the problem can come from?

Hi Klemens,
I think this could be because you're compiling for the ARM platform but then try to run the ARM rexximage program on your host, which is not going to work. Try to running rexximage on Android. It could be something else, I don't have the NDK installed here so can't test it.
Moritz
 
 
--
Moritz Hoffmann;
http://antiguru.de/
------------------------------------------------------------------------------ Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions and take corrective actions now Troubleshoot faster and improve end-user experience. Signup Now! http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140_______________________________________________ Oorexx-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oorexx-devel
------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
Oorexx-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to