zoukankan      html  css  js  c++  java
  • Fixes error: "Couldnt load module pthres" and similar.

    authorLuca Ceresoli <luca@lucaceresoli.net>2010-04-28 20:42:18 (GMT)
    committer Peter Korsgaard <jacmet@sunsite.dk>2010-05-01 20:55:23 (GMT)
    commitec45e2bad4e26d193f3c1ff5ffafe82f98161d14 (patch)
    treef03e0563d3f5bbea1df9c77dde15b13c54801622
    parentee39d53ce343c2d8e4603f40a9d3aaba6d5ef8ff (diff)
    downloadbuildroot-ec45e2bad4e26d193f3c1ff5ffafe82f98161d14.tar.gz
    buildroot-ec45e2bad4e26d193f3c1ff5ffafe82f98161d14.tar.bz2
    http://git.buildroot.net/buildroot/commit/?id=ec45e2bad4e26d193f3c1ff5ffafe82f98161d14 

    tslib: fix plugin linking

    Fixes error: "Couldnt load module pthres" and similar. Original patch: svn://svn.berlios.de/tslib/trunk@56. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
    -rw-r--r--package/tslib/tslib-1.0-link-plugins-against-libts.patch48



    1 files changed, 48 insertions, 0 deletions
    diff --git a/package/tslib/tslib-1.0-link-plugins-against-libts.patch b/package/tslib/tslib-1.0-link-plugins-against-libts.patch
    new file mode 100644
    index 0000000..d60b6a1
    --- a/dev/null
    +++ b/package/tslib/tslib-1.0-link-plugins-against-libts.patch
    @@ -0,0 +1,48 @@
    +commit 12435b337ea074bd31ccb03aff58c7eefa86f31c
    +Author: kergoth <kergoth@a933c7a4-9bf7-0310-9141-a2e45189604d>
    +Date: Sat Nov 1 20:46:07 2008 +0000
    +
    + Link plugins against libts
    +
    + Some plugins use tslib functions. Link those plugins against libts.
    + The problem is easy to see with LDFLAGS="-Wl,-no-undefined".
    + Without this change DirectFB in unable to use tslib because symbols
    + in the tslib plugins can't be resolved.
    +
    + Signed-off-by: Ville Syrjala <syrjala@sci.fi>
    + Signed-off-by: Chris Larson <clarson@kergoth.com>
    +
    + git-svn-id: svn://svn.berlios.de/tslib/trunk/tslib@56 a933c7a4-9bf7-0310-9141-a2e45189604d
    +
    +diff --git a/plugins/Makefile.am b/plugins/Makefile.am
    +index 3b902c2..4c4ef8b 100644
    +--- a/plugins/Makefile.am
    ++++ b/plugins/Makefile.am
    +@@ -114,15 +114,19 @@ pluginexec_LTLIBRARIES = \
    +
    + variance_la_SOURCES = variance.c
    + variance_la_LDFLAGS = -module $(LTVSN)
    ++variance_la_LIBADD = $(top_builddir)/src/libts.la
    +
    + dejitter_la_SOURCES = dejitter.c
    + dejitter_la_LDFLAGS = -module $(LTVSN)
    ++dejitter_la_LIBADD = $(top_builddir)/src/libts.la
    +
    + linear_la_SOURCES = linear.c
    + linear_la_LDFLAGS = -module $(LTVSN)
    ++linear_la_LIBADD = $(top_builddir)/src/libts.la
    +
    + pthres_la_SOURCES = pthres.c
    + pthres_la_LDFLAGS = -module $(LTVSN)
    ++pthres_la_LIBADD = $(top_builddir)/src/libts.la
    +
    + # hw access
    + corgi_la_SOURCES = corgi-raw.c
    +@@ -148,6 +152,7 @@ tatung_la_LDFLAGS = -module $(LTVSN)
    +
    + input_la_SOURCES = input-raw.c
    + input_la_LDFLAGS = -module $(LTVSN)
    ++input_la_LIBADD = $(top_builddir)/src/libts.la
    +
    + linear_h2200_la_SOURCES = linear-h2200.c
    + linear_h2200_la_LDFLAGS = -module $(LTVSN)
  • 相关阅读:
    为Android编译bash
    编译toybox
    RGB信仰灯
    如何用Fiddler抓BlueStacks的HTTPS包
    Adobe Acrobat快捷方式
    [MS-SHLLINK]: Shell Link (.LNK) Binary File Format
    BZOJ 3993 星际战争
    BZOJ 3996 线性代数
    BZOJ 1797 最小割
    BZOJ 2726 任务安排
  • 原文地址:https://www.cnblogs.com/leaven/p/1897980.html
Copyright © 2011-2022 走看看