This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

zlib.a and ncurseslib.a libs for AM1808

Other Parts Discussed in Thread: AM1808

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  := zlib
    ZLIB_VER  := 1.2.3
    CONTRIB_DIR  := contribs
    CROSS := 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)