* [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc
@ 2020-02-29 9:18 Fabrice Fontaine
2020-02-29 16:38 ` Yann E. MORIN
2020-03-14 17:33 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-02-29 9:18 UTC (permalink / raw)
To: buildroot
Fixes:
- http://autobuild.buildroot.org/results/17c2319850f02f24da6fbef9656c07f86fdc5a3a
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
...xc-raw_syscalls.c-fix-sparc-assembly.patch | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
diff --git a/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch b/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
new file mode 100644
index 0000000000..4de07ddada
--- /dev/null
+++ b/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
@@ -0,0 +1,41 @@
+From 5f7dd076fe203ebe6992698b63a1856a98bc0bba Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+Date: Fri, 28 Feb 2020 17:35:42 +0100
+Subject: [PATCH] src/lxc/raw_syscalls.c: fix sparc assembly
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Build of lxc 3.2.1 fails with ultrasparc on:
+
+raw_syscalls.c: In function ?lxc_raw_clone?:
+raw_syscalls.c:66:3: error: invalid 'asm': invalid operand output code
+ asm volatile(
+ ^~~
+
+Issue has been added with commit
+b52e8e68a61866da2af86e85905ec850f8a8b7fc which added %g1 instead of %%g1
+
+Fixes:
+ - http://autobuild.buildroot.org/results/17c2319850f02f24da6fbef9656c07f86fdc5a3a
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+[Retrieved from:
+https://github.com/lxc/lxc/commit/5f7dd076fe203ebe6992698b63a1856a98bc0bba]
+---
+ src/lxc/raw_syscalls.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lxc/raw_syscalls.c b/src/lxc/raw_syscalls.c
+index 7ffb2584b8..bfa48c0348 100644
+--- a/src/lxc/raw_syscalls.c
++++ b/src/lxc/raw_syscalls.c
+@@ -76,7 +76,7 @@ __returns_twice pid_t lxc_raw_clone(unsigned long flags, int *pidfd)
+ * processor status register (psr) is used instead of a
+ * full register.
+ */
+- "addx %%g0, 0, %g1"
++ "addx %%g0, 0, %%g1"
+ : "=r"(g1), "=r"(o0), "=r"(o1), "=r"(o2) /* outputs */
+ : "r"(g1), "r"(o0), "r"(o1), "r"(o2) /* inputs */
+ : "%cc"); /* clobbers */
--
2.25.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc
2020-02-29 9:18 [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc Fabrice Fontaine
@ 2020-02-29 16:38 ` Yann E. MORIN
2020-03-14 17:33 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-02-29 16:38 UTC (permalink / raw)
To: buildroot
Fabrice, All,
On 2020-02-29 10:18 +0100, Fabrice Fontaine spake thusly:
> Fixes:
> - http://autobuild.buildroot.org/results/17c2319850f02f24da6fbef9656c07f86fdc5a3a
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> ...xc-raw_syscalls.c-fix-sparc-assembly.patch | 41 +++++++++++++++++++
> 1 file changed, 41 insertions(+)
> create mode 100644 package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
>
> diff --git a/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch b/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
> new file mode 100644
> index 0000000000..4de07ddada
> --- /dev/null
> +++ b/package/lxc/0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch
> @@ -0,0 +1,41 @@
> +From 5f7dd076fe203ebe6992698b63a1856a98bc0bba Mon Sep 17 00:00:00 2001
> +From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +Date: Fri, 28 Feb 2020 17:35:42 +0100
> +Subject: [PATCH] src/lxc/raw_syscalls.c: fix sparc assembly
> +MIME-Version: 1.0
> +Content-Type: text/plain; charset=UTF-8
> +Content-Transfer-Encoding: 8bit
> +
> +Build of lxc 3.2.1 fails with ultrasparc on:
> +
> +raw_syscalls.c: In function ?lxc_raw_clone?:
> +raw_syscalls.c:66:3: error: invalid 'asm': invalid operand output code
> + asm volatile(
> + ^~~
> +
> +Issue has been added with commit
> +b52e8e68a61866da2af86e85905ec850f8a8b7fc which added %g1 instead of %%g1
> +
> +Fixes:
> + - http://autobuild.buildroot.org/results/17c2319850f02f24da6fbef9656c07f86fdc5a3a
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +[Retrieved from:
> +https://github.com/lxc/lxc/commit/5f7dd076fe203ebe6992698b63a1856a98bc0bba]
> +---
> + src/lxc/raw_syscalls.c | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/lxc/raw_syscalls.c b/src/lxc/raw_syscalls.c
> +index 7ffb2584b8..bfa48c0348 100644
> +--- a/src/lxc/raw_syscalls.c
> ++++ b/src/lxc/raw_syscalls.c
> +@@ -76,7 +76,7 @@ __returns_twice pid_t lxc_raw_clone(unsigned long flags, int *pidfd)
> + * processor status register (psr) is used instead of a
> + * full register.
> + */
> +- "addx %%g0, 0, %g1"
> ++ "addx %%g0, 0, %%g1"
> + : "=r"(g1), "=r"(o0), "=r"(o1), "=r"(o2) /* outputs */
> + : "r"(g1), "r"(o0), "r"(o1), "r"(o2) /* inputs */
> + : "%cc"); /* clobbers */
> --
> 2.25.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc
2020-02-29 9:18 [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc Fabrice Fontaine
2020-02-29 16:38 ` Yann E. MORIN
@ 2020-03-14 17:33 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-03-14 17:33 UTC (permalink / raw)
To: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Fixes:
> - http://autobuild.buildroot.org/results/17c2319850f02f24da6fbef9656c07f86fdc5a3a
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2019.11.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-03-14 17:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-29 9:18 [Buildroot] [PATCH 1/1] package/lxc: fix build with ultrasparc Fabrice Fontaine
2020-02-29 16:38 ` Yann E. MORIN
2020-03-14 17:33 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox