2009-06-11 09:59:50 Shared-FLAT & FDPIC
Nikolay Chokoev (IRELAND)
Message: 75540
Hi,
What's the difference between Shared-FLAT and FDPIC in general?
Are they both supported by the distribution?
Regards,
Nikolay
QuoteReplyEditDelete
2009-06-11 11:29:51 Re: Shared-FLAT & FDPIC
Frank Van Hooft (CANADA)
Message: 75542
Search the documentation wiki - there's lots regarding that topic in there. Here's just one page:
docs.blackfin.uclinux.org/doku.php
QuoteReplyEditDelete
2009-06-12 03:50:49 Re: Shared-FLAT & FDPIC
Nikolay Chokoev (IRELAND)
Message: 75576
Is there a reson the Qt shared library to be only FDPIC? Can it be Shared-FLAT?
ifeq ($(CONFIGURE_SHARED_ENABLE),--enable-shared)
CONF_SHARED_OPT = -shared
CONF_XPLATFORM = qws/linux-bfin-fdpic-g++
HAVE_SHARED := y
else
CONF_SHARED_OPT = -static
CONF_XPLATFORM = qws/linux-bfin-flat-g++
HAVE_SHARED := n
endif
QuoteReplyEditDelete
2009-06-12 03:58:21 Re: Shared-FLAT & FDPIC
Mike Frysinger (UNITED STATES)
Message: 75577
if you read the documentation on shared flat, you'll see that it requires you to manually manage ids for every library. we dont integrate the id management in anyway so if you want a package with shared flat, you'll have to change things yourself.