Re: [PATCH] rpmsg_ns: Work around TI non-standard message

2024-10-29 Thread Romain Naour
Hello Richard, All, Le 15/10/2024 à 20:00, Richard Weinberger a écrit : > Am Dienstag, 15. Oktober 2024, 19:56:08 CEST schrieb Mathieu Poirier: In my opinion the real fix here is to get TI to use the standard message announcement structure. The ->desc field doesn't seem to be that usefu

Re: [PATCH] mips: Do not include hi and lo in clobber list for R6

2020-07-25 Thread Romain Naour
Hi Alexander, Le 25/07/2020 à 16:32, Alexander Lobakin a écrit : > Hi Romain, > > From: Romain Naour > Date: Sat, 25 Jul 2020 15:25:33 +0200 > >> From [1] >> "GCC 10 (PR 91233) won't silently allow registers that are not >> architecturally >

Re: [PATCH 1/1] trace-cmd: use pkg-config instead of python-config

2013-11-04 Thread Romain Naour
package for python2 and python3 in buildroot, that's why I use PYTHON_VERS here. See how trace-cmd.mk use PYTHON_VERS: http://git.buildroot.net/buildroot/commit/?id=ff0367008c683362f422751644237218b1c45def Best regards, Romain Naour > > On Mon, Nov 4, 2013 at 12:32 AM, Johannes Berg &

[PATCH 1/1] trace-cmd: use pkg-config instead of python-config

2013-10-31 Thread Romain Naour
: Romain Naour --- Makefile | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1964949..2f862ec 100644 --- a/Makefile +++ b/Makefile @@ -81,8 +81,10 @@ ifndef NO_PYTHON PYTHON := ctracecmd.so PYTHON_GUI := ctracecmd.so ctracecmdgui.so

trace-cmd: use pkg-config instead of python-config

2013-10-28 Thread Romain Naour
trace-cmd use python-config to find out which headers and libraries should be used to link against the Python libraries. By default, python-config returns paths that are inappropriate for cross-compilation. Add PYTHON_VERS to build trace-cmd with python2 or python3 Signed-off-by: Romain Naour