Hi Venkada,
On 09/06/2013 09:52 AM, Venkada Ramanujam wrote:
Skip target test/lwip/http_srv because it requires libc_support_for_your_target_platform
above line tells us that target 'test/lwip/http_srv' won't get built, because you're missing C-library support. This is because you've to enable the libports repository (containing the C library) in the 'etc/build.conf' file in your Linux build directory beforehand. Just uncomment the following line:
#REPOSITORIES += $(GENODE_DIR)/libports
Moreover, you've to do a 'make prepare' in the libports directory of the Genode sources. This will download, and prepare necessary third-party code, e.g.: FreeBSD's libc sources. After that you can re-build your target via 'make run/lwip_lx', and it shouldn't complain about a missing 'test-lwip_httpsrv' binary anymore:
[init] Could not open file "test-lwip_httpsrv"
Regards Stefan