Hello
I have a customer developing with AM1808 using Linux BSP, and needs these libs: zlib.a and ncurseslib.a in runtime and devel. mode, where customer could get them?
Many thanks in advance
Alberto
You can compile it from sources.
As sample, I build zlib for Davinci DM36x:ZLIB := zlibZLIB_VER := 1.2.3CONTRIB_DIR := contribsCROSS := arm_v5t_le-zlib: [ -d $(ZLIB) ] ||\ (tar --extract --gunzip --file \ $(CONTRIB_DIR)/$(ZLIB)-$(ZLIB_VER).tar.gz && \ mv $(ZLIB)-$(ZLIB_VER) $(ZLIB)) [ -f $(ZLIB)/Makefile ] || \ (cd $(ZLIB) && \ CC=$(CROSS)gcc ./configure --shared --prefix=$(NFS_DIR)/usr) make --directory=$(ZLIB)