All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
@ 2010-06-14  8:19 Sagaert Johan
  2010-06-14  8:25 ` Thomas Petazzoni
  2010-06-14  8:35 ` Peter Korsgaard
  0 siblings, 2 replies; 6+ messages in thread
From: Sagaert Johan @ 2010-06-14  8:19 UTC (permalink / raw)
  To: buildroot

diff -rupN buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch
buildroot/package/qt/qt-4.6.2-pthread_getattr_np.patch
--- buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch
1970-01-01 01:00:00.000000000 +0100
+++ buildroot/package/qt/qt-4.6.2-pthread_getattr_np.patch 2010-06-13
19:10:16.000000000 +0200
@@ -0,0 +1,104 @@
+---
qt-everywhere-opensource-src-4.6.2/src/3rdparty/javascriptcore/JavaScriptCor
e/runtime/Collector.cpp 2010-02-11 16:55:20.000000000 +0100
++++
qt-everywhere-opensource-src-4.6.2JS/src/3rdparty/javascriptcore/JavaScriptC
ore/runtime/Collector.cpp 2010-05-23 10:49:29.000000000 +0200
+@@ -74,6 +74,22 @@
+ #endif
+ #include <unistd.h>
+ 
++#if defined(QT_LINUXBASE)
++#include <dlfcn.h>
++#endif
++
++#if defined(__UCLIBC__)
++// versions of uClibc 0.9.28 and below do not have
++// pthread_getattr_np or pthread_attr_getstack.
++#if __UCLIBC_MAJOR__ == 0 && \
++    (__UCLIBC_MINOR__ < 9 || \
++    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 31))
++#define UCLIBC_USE_PROC_SELF_MAPS 1
++#include <stdio_ext.h>
++extern int *__libc_stack_end;
++#endif
++#endif
++
+ #if PLATFORM(SOLARIS)
+ #include <thread.h>
+ #else
+@@ -667,16 +683,59 @@ static inline void* currentThreadStackBa
+     get_thread_info(find_thread(NULL), &threadInfo);
+     return threadInfo.stack_end;
+ #elif PLATFORM(UNIX)
++#ifdef UCLIBC_USE_PROC_SELF_MAPS
++    // Read /proc/self/maps and locate the line whose address
++    // range contains __libc_stack_end.
++    FILE *file = fopen("/proc/self/maps", "r");
++    if (!file)
++        return 0;
++    __fsetlocking(file, FSETLOCKING_BYCALLER);
++    char *line = NULL;
++    size_t lineLen = 0;
++    while (!feof_unlocked(file)) {
++        if (getdelim(&line, &lineLen, '\n', file) <= 0)
++            break;
++
++        long from;
++        long to;
++        if (sscanf (line, "%lx-%lx", &from, &to) != 2)
++            continue;
++        if (from <= (long)__libc_stack_end && (long)__libc_stack_end < to)
{
++            fclose(file);
++            free(line);
++#ifdef _STACK_GROWS_UP
++            return (void *)from;
++#else
++            return (void *)to;
++#endif
++        }
++    }
++    fclose(file);
++    free(line);
++    return 0;
++ #else
+     static void* stackBase = 0;
+     static size_t stackSize = 0;
+     static pthread_t stackThread;
+     pthread_t thread = pthread_self();
+     if (stackBase == 0 || thread != stackThread) {
++
++#if defined(QT_LINUXBASE)
++        // LinuxBase is missing pthread_getattr_np - resolve it once at
runtime instead
++        // see http://bugs.linuxbase.org/show_bug.cgi?id=2364
++        typedef int (*GetAttrPtr)(pthread_t, pthread_attr_t *);
++        static int (*pthread_getattr_np_ptr)(pthread_t, pthread_attr_t *)
= 0;
++        if (!pthread_getattr_np_ptr)
++            *(void **)&pthread_getattr_np_ptr = dlsym(RTLD_DEFAULT,
"pthread_getattr_np");
++#endif
+         pthread_attr_t sattr;
+         pthread_attr_init(&sattr);
+ #if HAVE(PTHREAD_NP_H) || PLATFORM(NETBSD)
+         // e.g. on FreeBSD 5.4, neundorf@kde.org
+         pthread_attr_get_np(thread, &sattr);
++#elif defined(QT_LINUXBASE)
++        if (pthread_getattr_np_ptr)
++            pthread_getattr_np_ptr(thread, &sattr);
+ #else
+         // FIXME: this function is non-portable; other POSIX systems may
have different np alternatives
+         pthread_getattr_np(thread, &sattr);
+@@ -688,6 +747,7 @@ static inline void* currentThreadStackBa
+         stackThread = thread;
+     }
+     return static_cast<char*>(stackBase) + stackSize;
++#endif
+ #elif PLATFORM(WINCE)
+     if (g_stackBase)
+         return g_stackBase;
+---
qt-everywhere-opensource-src-4.6.2/src/3rdparty/webkit/JavaScriptCore/runtim
e/Collector.cpp 2010-02-11 16:55:17.000000000 +0100
++++
qt-everywhere-opensource-src-4.6.2JS/src/3rdparty/webkit/JavaScriptCore/runt
ime/Collector.cpp 2010-05-23 01:41:06.000000000 +0200
+@@ -83,7 +83,7 @@
+ // pthread_getattr_np or pthread_attr_getstack.
+ #if __UCLIBC_MAJOR__ == 0 && \
+     (__UCLIBC_MINOR__ < 9 || \
+-    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 30))
++    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 31))
+ #define UCLIBC_USE_PROC_SELF_MAPS 1
+ #include <stdio_ext.h>
+ extern int *__libc_stack_end;

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20100614/9af9720a/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: br_qt.patch
Type: application/octet-stream
Size: 4268 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20100614/9af9720a/attachment-0001.obj>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
  2010-06-14  8:19 [Buildroot] PATCH [1/1] fix building QT with uclibc 0.9.31 Sagaert Johan
@ 2010-06-14  8:25 ` Thomas Petazzoni
  2010-06-14  8:35 ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2010-06-14  8:25 UTC (permalink / raw)
  To: buildroot

Hello Sagaert,

Your patch is unfortunately word-wrapped. Can you configure your e-mail
client not to word-wrap patches ?

Moreover, this patch needs a description: what is it fixing ?

Thanks!

Thomas

On Mon, 14 Jun 2010 10:19:45 +0200
"Sagaert Johan" <sagaert.johan@skynet.be> wrote:

> diff -rupN
> buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch
> buildroot/package/qt/qt-4.6.2-pthread_getattr_np.patch ---
> buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch
> 1970-01-01 01:00:00.000000000 +0100 +++
> buildroot/package/qt/qt-4.6.2-pthread_getattr_np.patch 2010-06-13
> 19:10:16.000000000 +0200 @@ -0,0 +1,104 @@
> +---
> qt-everywhere-opensource-src-4.6.2/src/3rdparty/javascriptcore/JavaScriptCor
> e/runtime/Collector.cpp 2010-02-11 16:55:20.000000000 +0100
> ++++
> qt-everywhere-opensource-src-4.6.2JS/src/3rdparty/javascriptcore/JavaScriptC
> ore/runtime/Collector.cpp 2010-05-23 10:49:29.000000000 +0200
> +@@ -74,6 +74,22 @@
> + #endif
> + #include <unistd.h>
> + 
> ++#if defined(QT_LINUXBASE)
> ++#include <dlfcn.h>
> ++#endif
> ++
> ++#if defined(__UCLIBC__)
> ++// versions of uClibc 0.9.28 and below do not have
> ++// pthread_getattr_np or pthread_attr_getstack.
> ++#if __UCLIBC_MAJOR__ == 0 && \
> ++    (__UCLIBC_MINOR__ < 9 || \
> ++    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 31))
> ++#define UCLIBC_USE_PROC_SELF_MAPS 1
> ++#include <stdio_ext.h>
> ++extern int *__libc_stack_end;
> ++#endif
> ++#endif
> ++
> + #if PLATFORM(SOLARIS)
> + #include <thread.h>
> + #else
> +@@ -667,16 +683,59 @@ static inline void* currentThreadStackBa
> +     get_thread_info(find_thread(NULL), &threadInfo);
> +     return threadInfo.stack_end;
> + #elif PLATFORM(UNIX)
> ++#ifdef UCLIBC_USE_PROC_SELF_MAPS
> ++    // Read /proc/self/maps and locate the line whose address
> ++    // range contains __libc_stack_end.
> ++    FILE *file = fopen("/proc/self/maps", "r");
> ++    if (!file)
> ++        return 0;
> ++    __fsetlocking(file, FSETLOCKING_BYCALLER);
> ++    char *line = NULL;
> ++    size_t lineLen = 0;
> ++    while (!feof_unlocked(file)) {
> ++        if (getdelim(&line, &lineLen, '\n', file) <= 0)
> ++            break;
> ++
> ++        long from;
> ++        long to;
> ++        if (sscanf (line, "%lx-%lx", &from, &to) != 2)
> ++            continue;
> ++        if (from <= (long)__libc_stack_end &&
> (long)__libc_stack_end < to) {
> ++            fclose(file);
> ++            free(line);
> ++#ifdef _STACK_GROWS_UP
> ++            return (void *)from;
> ++#else
> ++            return (void *)to;
> ++#endif
> ++        }
> ++    }
> ++    fclose(file);
> ++    free(line);
> ++    return 0;
> ++ #else
> +     static void* stackBase = 0;
> +     static size_t stackSize = 0;
> +     static pthread_t stackThread;
> +     pthread_t thread = pthread_self();
> +     if (stackBase == 0 || thread != stackThread) {
> ++
> ++#if defined(QT_LINUXBASE)
> ++        // LinuxBase is missing pthread_getattr_np - resolve it
> once at runtime instead
> ++        // see http://bugs.linuxbase.org/show_bug.cgi?id=2364
> ++        typedef int (*GetAttrPtr)(pthread_t, pthread_attr_t *);
> ++        static int (*pthread_getattr_np_ptr)(pthread_t,
> pthread_attr_t *) = 0;
> ++        if (!pthread_getattr_np_ptr)
> ++            *(void **)&pthread_getattr_np_ptr = dlsym(RTLD_DEFAULT,
> "pthread_getattr_np");
> ++#endif
> +         pthread_attr_t sattr;
> +         pthread_attr_init(&sattr);
> + #if HAVE(PTHREAD_NP_H) || PLATFORM(NETBSD)
> +         // e.g. on FreeBSD 5.4, neundorf at kde.org
> +         pthread_attr_get_np(thread, &sattr);
> ++#elif defined(QT_LINUXBASE)
> ++        if (pthread_getattr_np_ptr)
> ++            pthread_getattr_np_ptr(thread, &sattr);
> + #else
> +         // FIXME: this function is non-portable; other POSIX
> systems may have different np alternatives
> +         pthread_getattr_np(thread, &sattr);
> +@@ -688,6 +747,7 @@ static inline void* currentThreadStackBa
> +         stackThread = thread;
> +     }
> +     return static_cast<char*>(stackBase) + stackSize;
> ++#endif
> + #elif PLATFORM(WINCE)
> +     if (g_stackBase)
> +         return g_stackBase;
> +---
> qt-everywhere-opensource-src-4.6.2/src/3rdparty/webkit/JavaScriptCore/runtim
> e/Collector.cpp 2010-02-11 16:55:17.000000000 +0100
> ++++
> qt-everywhere-opensource-src-4.6.2JS/src/3rdparty/webkit/JavaScriptCore/runt
> ime/Collector.cpp 2010-05-23 01:41:06.000000000 +0200
> +@@ -83,7 +83,7 @@
> + // pthread_getattr_np or pthread_attr_getstack.
> + #if __UCLIBC_MAJOR__ == 0 && \
> +     (__UCLIBC_MINOR__ < 9 || \
> +-    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 30))
> ++    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 31))
> + #define UCLIBC_USE_PROC_SELF_MAPS 1
> + #include <stdio_ext.h>
> + extern int *__libc_stack_end;
> 


-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
  2010-06-14  8:19 [Buildroot] PATCH [1/1] fix building QT with uclibc 0.9.31 Sagaert Johan
  2010-06-14  8:25 ` Thomas Petazzoni
@ 2010-06-14  8:35 ` Peter Korsgaard
  2010-06-14 10:10   ` Sagaert Johan
  1 sibling, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2010-06-14  8:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:

 Sagaert> diff -rupN buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch

What does this fix? I've build qt-4.6.2 several times with uclibc 0.9.31
/ gcc 4.4.4 without problems?

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
  2010-06-14  8:35 ` Peter Korsgaard
@ 2010-06-14 10:10   ` Sagaert Johan
  2010-06-15  8:59     ` Peter Korsgaard
  0 siblings, 1 reply; 6+ messages in thread
From: Sagaert Johan @ 2010-06-14 10:10 UTC (permalink / raw)
  To: buildroot

 
Hi Peter

Did you build the JavaScriptCore and Multimedia module ?

I had a build error : pthread_getattr_np is not defined in uclibc,
there was a workaround for uclibc 0.9.30.x but not for 0.9.31.

Snippet from the patch.

 #if __UCLIBC_MAJOR__ == 0 && \
     (__UCLIBC_MINOR__ < 9 || \
-    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 30))
+    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 31))
 #define UCLIBC_USE_PROC_SELF_MAPS 1
 #include <stdio_ext.h>

 

-----Oorspronkelijk bericht-----
Van: Peter Korsgaard [mailto:jacmet at gmail.com] Namens Peter Korsgaard
Verzonden: maandag 14 juni 2010 10:36
Aan: Sagaert Johan
CC: buildroot at busybox.net
Onderwerp: Re: PATCH [1/1] fix building QT with uclibc 0.9.31

>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:

 Sagaert> diff -rupN
buildroot-2010.05/package/qt/qt-4.6.2-pthread_getattr_np.patch

What does this fix? I've build qt-4.6.2 several times with uclibc 0.9.31 /
gcc 4.4.4 without problems?

--
Bye, Peter Korsgaard
-------------- next part --------------
A non-text attachment was scrubbed...
Name: qt-4.6.2-pthread_getattr_np.patch
Type: application/octet-stream
Size: 3819 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20100614/b970cfeb/attachment.obj>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
  2010-06-14 10:10   ` Sagaert Johan
@ 2010-06-15  8:59     ` Peter Korsgaard
  2010-06-15  9:54       ` Sagaert Johan
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2010-06-15  8:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:

 Sagaert> Hi Peter

 Sagaert> Did you build the JavaScriptCore and Multimedia module ?

Ahh, no - I didn't. I've tested it now and see the issue as well.

 Sagaert> I had a build error : pthread_getattr_np is not defined in uclibc,
 Sagaert> there was a workaround for uclibc 0.9.30.x but not for 0.9.31.

Where does this patch come from? We try to add a description of what the
patches do and where they come from to the top of the files.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] PATCH [1/1] fix  building QT with uclibc 0.9.31
  2010-06-15  8:59     ` Peter Korsgaard
@ 2010-06-15  9:54       ` Sagaert Johan
  0 siblings, 0 replies; 6+ messages in thread
From: Sagaert Johan @ 2010-06-15  9:54 UTC (permalink / raw)
  To: buildroot


Peter

I think i started here
http://survey.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&p=539852
and
https://dev.openwrt.org/browser/packages/Xorg/lib/qt4/patches/100-fix-webkit
-for-uclibc.patch
and
http://qt4-x11.sourcearchive.com/documentation/4.5.0~plus-prc1-0ubuntu1/Coll
ector_8cpp-source.html
Are also references to the problem/solutions

I'am not sure who wrote the original patch but i guess it might originate
from openwrt 


-----Oorspronkelijk bericht-----
Van: Peter Korsgaard [mailto:jacmet at gmail.com] Namens Peter Korsgaard
Verzonden: dinsdag 15 juni 2010 10:59
Aan: Sagaert Johan
CC: 'Peter Korsgaard'; buildroot at busybox.net
Onderwerp: Re: PATCH [1/1] fix building QT with uclibc 0.9.31

>>>>> "Sagaert" == Sagaert Johan <sagaert.johan@skynet.be> writes:

 Sagaert> Hi Peter

 Sagaert> Did you build the JavaScriptCore and Multimedia module ?

Ahh, no - I didn't. I've tested it now and see the issue as well.

 Sagaert> I had a build error : pthread_getattr_np is not defined in uclibc,
Sagaert> there was a workaround for uclibc 0.9.30.x but not for 0.9.31.

Where does this patch come from? We try to add a description of what the
patches do and where they come from to the top of the files.

--
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-06-15  9:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-14  8:19 [Buildroot] PATCH [1/1] fix building QT with uclibc 0.9.31 Sagaert Johan
2010-06-14  8:25 ` Thomas Petazzoni
2010-06-14  8:35 ` Peter Korsgaard
2010-06-14 10:10   ` Sagaert Johan
2010-06-15  8:59     ` Peter Korsgaard
2010-06-15  9:54       ` Sagaert Johan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.