Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
@ 2015-08-25 10:41 Benoît Thébaudeau
  2015-08-26 13:45 ` Thomas Petazzoni
  0 siblings, 1 reply; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-25 10:41 UTC (permalink / raw)
  To: buildroot

Building with ccache failed with:

    Running configuration tests...
    Failed to process makespec for platform 'devices/linux-buildroot-g++'
    Project ERROR: Compiler <path_to_output_dir>/host/usr/bin/ccache <path_to_output_dir>/host/usr/bin/<cross_compile>-g++ not found. Check the value of CROSS_COMPILE -device-option
    Could not read qmake configuration file <path_to_output_dir>/build/qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf.
    Error processing project file: /dev/null

This was caused by Buildroot setting this in
qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf:

    QMAKE_CXX               = $${BR_CCACHE} $${CROSS_COMPILE}g++

But qt5base-5.5.0/mkspecs/features/device_config.prf expects QMAKE_CXX
to be a valid (absolute or QMAKE_PATH_ENV-relative) path to an existing
file, which is not possible if using ccache as above.

Add a patch removing these tests since the toolchain is already tested
by Buildroot, which allows to keep using ccache.

Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
---
 .../qt5/qt5base/0009-fix-build-with-ccache.patch   | 60 ++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 package/qt5/qt5base/0009-fix-build-with-ccache.patch

diff --git a/package/qt5/qt5base/0009-fix-build-with-ccache.patch b/package/qt5/qt5base/0009-fix-build-with-ccache.patch
new file mode 100644
index 0000000..04d41a4
--- /dev/null
+++ b/package/qt5/qt5base/0009-fix-build-with-ccache.patch
@@ -0,0 +1,60 @@
+Fix build with ccache
+
+Building with Buildroot and ccache failed with:
+
+    Running configuration tests...
+    Failed to process makespec for platform 'devices/linux-buildroot-g++'
+    Project ERROR: Compiler <path_to_output_dir>/host/usr/bin/ccache <path_to_output_dir>/host/usr/bin/<cross_compile>-g++ not found. Check the value of CROSS_COMPILE -device-option
+    Could not read qmake configuration file <path_to_output_dir>/build/qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf.
+    Error processing project file: /dev/null
+
+This was caused by Buildroot setting this in
+qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf:
+
+    QMAKE_CXX               = $${BR_CCACHE} $${CROSS_COMPILE}g++
+
+But qt5base-5.5.0/mkspecs/features/device_config.prf expects QMAKE_CXX
+to be a valid (absolute or QMAKE_PATH_ENV-relative) path to an existing
+file, which is not possible if using ccache as above.
+
+Remove these tests since the toolchain is already tested by Buildroot,
+which allows to keep using ccache.
+
+Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
+---
+ mkspecs/features/device_config.prf | 23 -----------------------
+ 1 file changed, 23 deletions(-)
+
+diff --git a/mkspecs/features/device_config.prf b/mkspecs/features/device_config.prf
+index cd3a0cf..ef16540 100644
+--- a/mkspecs/features/device_config.prf
++++ b/mkspecs/features/device_config.prf
+@@ -14,28 +14,5 @@ host_build {
+ 
+ # Provide a function to be used by mkspecs
+ defineTest(deviceSanityCheckCompiler) {
+-    equals(QMAKE_HOST.os, Windows): \
+-        sfx = .exe
+-    else: \
+-        sfx =
+-
+-    # Check if the binary exists with an absolute path. Do this check
+-    # before the CROSS_COMPILE empty check below to allow the mkspec
+-    # to derive the compiler path from other device options.
+-    exists($$QMAKE_CXX$$sfx):return()
+-
+-    # Check for possible reasons of failure
+-    # check if CROSS_COMPILE device-option is set
+-    isEmpty(CROSS_COMPILE):error("CROSS_COMPILE needs to be set via -device-option CROSS_COMPILE=<path>")
+-
+-    # Check if QMAKE_CXX points to an executable.
+-    ensurePathEnv()
+-    for (dir, QMAKE_PATH_ENV) {
+-        exists($$dir/$${QMAKE_CXX}$$sfx): \
+-            return()
+-    }
+-
+-    # QMAKE_CXX does not point to a compiler.
+-    error("Compiler $$QMAKE_CXX not found. Check the value of CROSS_COMPILE -device-option")
+ }
+ 
-- 
2.1.4

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-25 10:41 [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache Benoît Thébaudeau
@ 2015-08-26 13:45 ` Thomas Petazzoni
  2015-08-26 22:10   ` Benoît Thébaudeau
  0 siblings, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2015-08-26 13:45 UTC (permalink / raw)
  To: buildroot

Beno?t,

On Tue, 25 Aug 2015 12:41:38 +0200, Beno?t Th?baudeau wrote:
> Building with ccache failed with:
> 
>     Running configuration tests...
>     Failed to process makespec for platform 'devices/linux-buildroot-g++'
>     Project ERROR: Compiler <path_to_output_dir>/host/usr/bin/ccache <path_to_output_dir>/host/usr/bin/<cross_compile>-g++ not found. Check the value of CROSS_COMPILE -device-option
>     Could not read qmake configuration file <path_to_output_dir>/build/qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf.
>     Error processing project file: /dev/null
> 
> This was caused by Buildroot setting this in
> qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf:
> 
>     QMAKE_CXX               = $${BR_CCACHE} $${CROSS_COMPILE}g++
> 
> But qt5base-5.5.0/mkspecs/features/device_config.prf expects QMAKE_CXX
> to be a valid (absolute or QMAKE_PATH_ENV-relative) path to an existing
> file, which is not possible if using ccache as above.
> 
> Add a patch removing these tests since the toolchain is already tested
> by Buildroot, which allows to keep using ccache.
> 
> Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>

Thanks for the patch. I see the problem, but as usual, having a
solution that can be submitted upstream is better. See my suggestion
below.

> ---
>  .../qt5/qt5base/0009-fix-build-with-ccache.patch   | 60 ++++++++++++++++++++++
>  1 file changed, 60 insertions(+)
>  create mode 100644 package/qt5/qt5base/0009-fix-build-with-ccache.patch
> 
> diff --git a/package/qt5/qt5base/0009-fix-build-with-ccache.patch b/package/qt5/qt5base/0009-fix-build-with-ccache.patch
> new file mode 100644
> index 0000000..04d41a4
> --- /dev/null
> +++ b/package/qt5/qt5base/0009-fix-build-with-ccache.patch
> @@ -0,0 +1,60 @@
> +Fix build with ccache
> +
> +Building with Buildroot and ccache failed with:
> +
> +    Running configuration tests...
> +    Failed to process makespec for platform 'devices/linux-buildroot-g++'
> +    Project ERROR: Compiler <path_to_output_dir>/host/usr/bin/ccache <path_to_output_dir>/host/usr/bin/<cross_compile>-g++ not found. Check the value of CROSS_COMPILE -device-option
> +    Could not read qmake configuration file <path_to_output_dir>/build/qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf.
> +    Error processing project file: /dev/null
> +
> +This was caused by Buildroot setting this in
> +qt5base-5.5.0/mkspecs/devices/linux-buildroot-g++/qmake.conf:
> +
> +    QMAKE_CXX               = $${BR_CCACHE} $${CROSS_COMPILE}g++
> +
> +But qt5base-5.5.0/mkspecs/features/device_config.prf expects QMAKE_CXX
> +to be a valid (absolute or QMAKE_PATH_ENV-relative) path to an existing
> +file, which is not possible if using ccache as above.
> +
> +Remove these tests since the toolchain is already tested by Buildroot,
> +which allows to keep using ccache.
> +
> +Signed-off-by: Beno?t Th?baudeau <benoit@wsystem.com>
> +---
> + mkspecs/features/device_config.prf | 23 -----------------------
> + 1 file changed, 23 deletions(-)
> +
> +diff --git a/mkspecs/features/device_config.prf b/mkspecs/features/device_config.prf
> +index cd3a0cf..ef16540 100644
> +--- a/mkspecs/features/device_config.prf
> ++++ b/mkspecs/features/device_config.prf
> +@@ -14,28 +14,5 @@ host_build {
> + 
> + # Provide a function to be used by mkspecs
> + defineTest(deviceSanityCheckCompiler) {
> +-    equals(QMAKE_HOST.os, Windows): \
> +-        sfx = .exe
> +-    else: \
> +-        sfx =
> +-
> +-    # Check if the binary exists with an absolute path. Do this check
> +-    # before the CROSS_COMPILE empty check below to allow the mkspec
> +-    # to derive the compiler path from other device options.
> +-    exists($$QMAKE_CXX$$sfx):return()
> +-
> +-    # Check for possible reasons of failure
> +-    # check if CROSS_COMPILE device-option is set
> +-    isEmpty(CROSS_COMPILE):error("CROSS_COMPILE needs to be set via -device-option CROSS_COMPILE=<path>")
> +-
> +-    # Check if QMAKE_CXX points to an executable.
> +-    ensurePathEnv()
> +-    for (dir, QMAKE_PATH_ENV) {
> +-        exists($$dir/$${QMAKE_CXX}$$sfx): \
> +-            return()
> +-    }

Instead of removing this entire piece of code, can you try to replace
just this last part by something like:

	system($${QMAKE_CXX}$$sfx --version): return()

Instead of trying to look for a file, it will actually try to run the
compiler.

Also, can you report the bug and submit the patch upstream to Qt? See
https://bugreports.qt.io/secure/Dashboard.jspa.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-26 13:45 ` Thomas Petazzoni
@ 2015-08-26 22:10   ` Benoît Thébaudeau
  2015-08-27  8:12     ` Benoît Thébaudeau
  0 siblings, 1 reply; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-26 22:10 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On Wed, Aug 26, 2015 at 3:45 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> On Tue, 25 Aug 2015 12:41:38 +0200, Beno?t Th?baudeau wrote:
>> +-    # Check if QMAKE_CXX points to an executable.
>> +-    ensurePathEnv()
>> +-    for (dir, QMAKE_PATH_ENV) {
>> +-        exists($$dir/$${QMAKE_CXX}$$sfx): \
>> +-            return()
>> +-    }
>
> Instead of removing this entire piece of code, can you try to replace
> just this last part by something like:
>
>         system($${QMAKE_CXX}$$sfx --version): return()
>
> Instead of trying to look for a file, it will actually try to run the
> compiler.
>
> Also, can you report the bug and submit the patch upstream to Qt? See
> https://bugreports.qt.io/secure/Dashboard.jspa.

I have opened a bug report upstream as you suggested:
https://bugreports.qt.io/browse/QTBUG-47951

As explained in this report, I think that your suggestion would work
for Buildroot (not yet tested), but not for upstream Qt.

My point with this patch was that upstream could consider this
Buildroot use case as illegal because the definition of QMAKE_CXX
(http://doc.qt.io/qt-5/qmake-variable-reference.html#qmake-cxx) only
mentions a filename and a path as possibilities. In that case, the bug
is in Buildroot, and since this sanity check of the compiler is not
needed for Buildroot, we can just remove this test. If we don't want a
local patch for this, maybe we could use a wrapper above ccache, or
put ccache into QMAKE_CXX and the compiler into QMAKE_CXXFLAGS (not
tested, and a bit ugly).

Wait and see what upstream says.

Best regards,
Beno?t

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-26 22:10   ` Benoît Thébaudeau
@ 2015-08-27  8:12     ` Benoît Thébaudeau
  2015-08-27  8:54       ` Thomas Petazzoni
  0 siblings, 1 reply; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-27  8:12 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On 27/08/2015 00:10, Beno?t Th?baudeau wrote:
> On Wed, Aug 26, 2015 at 3:45 PM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
>> On Tue, 25 Aug 2015 12:41:38 +0200, Beno?t Th?baudeau wrote:
>>> +-    # Check if QMAKE_CXX points to an executable.
>>> +-    ensurePathEnv()
>>> +-    for (dir, QMAKE_PATH_ENV) {
>>> +-        exists($$dir/$${QMAKE_CXX}$$sfx): \
>>> +-            return()
>>> +-    }
>>
>> Instead of removing this entire piece of code, can you try to replace
>> just this last part by something like:
>>
>>         system($${QMAKE_CXX}$$sfx --version): return()
>>
>> Instead of trying to look for a file, it will actually try to run the
>> compiler.
>>
>> Also, can you report the bug and submit the patch upstream to Qt? See
>> https://bugreports.qt.io/secure/Dashboard.jspa.
> 
> I have opened a bug report upstream as you suggested:
> https://bugreports.qt.io/browse/QTBUG-47951
> 
> As explained in this report, I think that your suggestion would work
> for Buildroot (not yet tested), but not for upstream Qt.
> 
> My point with this patch was that upstream could consider this
> Buildroot use case as illegal because the definition of QMAKE_CXX
> (http://doc.qt.io/qt-5/qmake-variable-reference.html#qmake-cxx) only
> mentions a filename and a path as possibilities. In that case, the bug
> is in Buildroot, and since this sanity check of the compiler is not
> needed for Buildroot, we can just remove this test. If we don't want a
> local patch for this, maybe we could use a wrapper above ccache, or
> put ccache into QMAKE_CXX and the compiler into QMAKE_CXXFLAGS (not
> tested, and a bit ugly).
> 
> Wait and see what upstream says.

Upstream recommends this approach:
http://lists.qt-project.org/pipermail/qt-creator/2014-January/003148.html

What do you think?

Best regards,
Beno?t

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27  8:12     ` Benoît Thébaudeau
@ 2015-08-27  8:54       ` Thomas Petazzoni
  2015-08-27  9:12         ` Benoît Thébaudeau
  0 siblings, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2015-08-27  8:54 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 27 Aug 2015 10:12:44 +0200, Beno?t Th?baudeau wrote:

> > As explained in this report, I think that your suggestion would work
> > for Buildroot (not yet tested), but not for upstream Qt.
> > 
> > My point with this patch was that upstream could consider this
> > Buildroot use case as illegal because the definition of QMAKE_CXX
> > (http://doc.qt.io/qt-5/qmake-variable-reference.html#qmake-cxx) only
> > mentions a filename and a path as possibilities. In that case, the bug
> > is in Buildroot, and since this sanity check of the compiler is not
> > needed for Buildroot, we can just remove this test. If we don't want a
> > local patch for this, maybe we could use a wrapper above ccache, or
> > put ccache into QMAKE_CXX and the compiler into QMAKE_CXXFLAGS (not
> > tested, and a bit ugly).
> > 
> > Wait and see what upstream says.
> 
> Upstream recommends this approach:
> http://lists.qt-project.org/pipermail/qt-creator/2014-January/003148.html
> 
> What do you think?

Well, we already have a wrapper for the compiler in the case of the
external toolchain. And we will probably also extend the wrapper in the
future to the internal toolchain case, in order to support per-package
staging directory. In this case, we could take advantage of this
wrapper to include the ccache functionality, and avoid having CC and
CXX values that have two words.

I really would like to have the wrapper suggested in this e-mail
calling our wrapper, then calling the real compiler.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27  8:54       ` Thomas Petazzoni
@ 2015-08-27  9:12         ` Benoît Thébaudeau
  2015-08-27 12:39           ` Thomas Petazzoni
  2015-08-27 12:49           ` Jaap Crezee
  0 siblings, 2 replies; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-27  9:12 UTC (permalink / raw)
  To: buildroot

Hi,

On 27/08/2015 10:54, Thomas Petazzoni wrote:
> On Thu, 27 Aug 2015 10:12:44 +0200, Beno?t Th?baudeau wrote:
> 
>>> As explained in this report, I think that your suggestion would work
>>> for Buildroot (not yet tested), but not for upstream Qt.
>>>
>>> My point with this patch was that upstream could consider this
>>> Buildroot use case as illegal because the definition of QMAKE_CXX
>>> (http://doc.qt.io/qt-5/qmake-variable-reference.html#qmake-cxx) only
>>> mentions a filename and a path as possibilities. In that case, the bug
>>> is in Buildroot, and since this sanity check of the compiler is not
>>> needed for Buildroot, we can just remove this test. If we don't want a
>>> local patch for this, maybe we could use a wrapper above ccache, or
>>> put ccache into QMAKE_CXX and the compiler into QMAKE_CXXFLAGS (not
>>> tested, and a bit ugly).
>>>
>>> Wait and see what upstream says.
>>
>> Upstream recommends this approach:
>> http://lists.qt-project.org/pipermail/qt-creator/2014-January/003148.html
>>
>> What do you think?
> 
> Well, we already have a wrapper for the compiler in the case of the
> external toolchain. And we will probably also extend the wrapper in the
> future to the internal toolchain case, in order to support per-package
> staging directory. In this case, we could take advantage of this
> wrapper to include the ccache functionality, and avoid having CC and
> CXX values that have two words.
> 
> I really would like to have the wrapper suggested in this e-mail
> calling our wrapper, then calling the real compiler.

OK, but in the meantime, until we have a wrapper for the internal toolchain too,
what do you want to do to fix the current build failure?
 - Forbid the use of ccache with Qt 5?
 - Use the current patch?
 - Use the wrapper from the URL above? In that case, where would you put it in
   Buildroot (qt5base, new package, toolchain, support)?

Best regards,
Beno?t

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27  9:12         ` Benoît Thébaudeau
@ 2015-08-27 12:39           ` Thomas Petazzoni
  2015-08-28  9:50             ` Benoît Thébaudeau
  2015-08-27 12:49           ` Jaap Crezee
  1 sibling, 1 reply; 10+ messages in thread
From: Thomas Petazzoni @ 2015-08-27 12:39 UTC (permalink / raw)
  To: buildroot

Beno?t,

On Thu, 27 Aug 2015 11:12:47 +0200, Beno?t Th?baudeau wrote:

 > OK, but in the meantime, until we have a wrapper for the internal toolchain too,
> what do you want to do to fix the current build failure?
>  - Forbid the use of ccache with Qt 5?
>  - Use the current patch?
>  - Use the wrapper from the URL above? In that case, where would you put it in
>    Buildroot (qt5base, new package, toolchain, support)?

For 2015.08, your patch is certainly the simplest solution.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27  9:12         ` Benoît Thébaudeau
  2015-08-27 12:39           ` Thomas Petazzoni
@ 2015-08-27 12:49           ` Jaap Crezee
  2015-08-27 19:03             ` Benoît Thébaudeau
  1 sibling, 1 reply; 10+ messages in thread
From: Jaap Crezee @ 2015-08-27 12:49 UTC (permalink / raw)
  To: buildroot

Hi all,


On 08/27/15 11:12, Beno?t Th?baudeau wrote:
> OK, but in the meantime, until we have a wrapper for the internal toolchain too,
> what do you want to do to fix the current build failure?
>  - Forbid the use of ccache with Qt 5?

I would not recommend that. Qt5base is *huge* and recompiling it over and over again (as I
do when I am developing with/against buildroot) is just too time consuming.

>  - Use the current patch?

You can also look at one of my previous patches (see list archive). I simply don't have
the time to respond to all correction requests unfortunately.


Regards,


Jaap Crezee

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27 12:49           ` Jaap Crezee
@ 2015-08-27 19:03             ` Benoît Thébaudeau
  0 siblings, 0 replies; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-27 19:03 UTC (permalink / raw)
  To: buildroot

Dear Jaap Crezee,

On Thu, Aug 27, 2015 at 2:49 PM, Jaap Crezee <jaap@jcz.nl> wrote:
> On 08/27/15 11:12, Beno?t Th?baudeau wrote:
>> OK, but in the meantime, until we have a wrapper for the internal toolchain too,
>> what do you want to do to fix the current build failure?
>>  - Forbid the use of ccache with Qt 5?
>
> I would not recommend that. Qt5base is *huge* and recompiling it over and over again (as I
> do when I am developing with/against buildroot) is just too time consuming.

Agreed.

>>  - Use the current patch?
>
> You can also look at one of my previous patches (see list archive). I simply don't have
> the time to respond to all correction requests unfortunately.

I have added your suggestion here:
https://bugreports.qt.io/browse/QTBUG-47951?focusedCommentId=291119&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-291119

Best regards,
Beno?t

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

* [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache
  2015-08-27 12:39           ` Thomas Petazzoni
@ 2015-08-28  9:50             ` Benoît Thébaudeau
  0 siblings, 0 replies; 10+ messages in thread
From: Benoît Thébaudeau @ 2015-08-28  9:50 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On 27/08/2015 14:39, Thomas Petazzoni wrote:
> On Thu, 27 Aug 2015 11:12:47 +0200, Beno?t Th?baudeau wrote:
> 
>  > OK, but in the meantime, until we have a wrapper for the internal toolchain too,
>> what do you want to do to fix the current build failure?
>>  - Forbid the use of ccache with Qt 5?
>>  - Use the current patch?
>>  - Use the wrapper from the URL above? In that case, where would you put it in
>>    Buildroot (qt5base, new package, toolchain, support)?
> 
> For 2015.08, your patch is certainly the simplest solution.

I've just posted a v2:
http://patchwork.ozlabs.org/patch/511841/

I will submit it upstream. According to the last comment in the upstream bug
report, this patch could possibly be accepted upstream.

Best regards,
Beno?t

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

end of thread, other threads:[~2015-08-28  9:50 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25 10:41 [Buildroot] [PATCH] pacakge/qt5/qt5base: fix build with ccache Benoît Thébaudeau
2015-08-26 13:45 ` Thomas Petazzoni
2015-08-26 22:10   ` Benoît Thébaudeau
2015-08-27  8:12     ` Benoît Thébaudeau
2015-08-27  8:54       ` Thomas Petazzoni
2015-08-27  9:12         ` Benoît Thébaudeau
2015-08-27 12:39           ` Thomas Petazzoni
2015-08-28  9:50             ` Benoît Thébaudeau
2015-08-27 12:49           ` Jaap Crezee
2015-08-27 19:03             ` Benoît Thébaudeau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox