From: Richard Henderson <richard.henderson@linaro.org>
To: Warner Losh <imp@bsdimp.com>, qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Kyle Evans <kevans@freebsd.org>,
qemu-arm@nongnu.org
Subject: Re: [PULL 00/14] Bsd user for 9.1 patches
Date: Wed, 24 Jul 2024 18:55:43 +1000 [thread overview]
Message-ID: <d76f7003-e36e-4b9f-a7db-7e8e962b446d@linaro.org> (raw)
In-Reply-To: <20240723180725.99114-1-imp@bsdimp.com>
On 7/24/24 04:07, Warner Losh wrote:
> The following changes since commit 3cce8bd4d737f2ca688bbdcb92cd5cc683245bbd:
>
> Merge tag 'ui-pull-request' ofhttps://gitlab.com/marcandre.lureau/qemu into staging (2024-07-23 15:23:05 +1000)
>
> are available in the Git repository at:
>
> git@gitlab.com:bsdimp/qemu.git tags/bsd-user-for-9.1-pull-request
>
> for you to fetch changes up to afdb6be1bd8528395af65a087bd668bf7a42ab99:
>
> bsd-user: Add aarch64 build to tree (2024-07-23 10:56:30 -0600)
>
> ----------------------------------------------------------------
> bsd-user: Misc changes for 9.1 (I hope)
>
> This patch series includes two main sets of patches. To make it simple to
> review, I've included the changes from my student which the later changes depend
> on. I've included a change from Jessica and Doug as well. I've reviewed them,
> but more eyes never hurt.
>
> I've also included a number of 'touch up' patches needed either to get the
> aarch64 building, or to implmement suggestions from prior review cycles. The
> main one is what's charitably described as a kludge: force aarch64 to use 4k
> pages. The qemu-project (and blitz branch) hasn't had the necessary changes to
> bsd-user needed to support variable page size.
>
> Sorry this is so late... Live has conspired to delay me.
Something didn't get committed properly, as it doesn't build:
$ ninja
[343/1144] Compiling C object
libqemu-aarch64-bsd-user.a.p/bsd-user_aarch64_target_arch_cpu.c.o
FAILED: libqemu-aarch64-bsd-user.a.p/bsd-user_aarch64_target_arch_cpu.c.o
cc -m64 -Ilibqemu-aarch64-bsd-user.a.p -I. -I../src -Itarget/arm -I../src/target/arm
-I../src/common-user/host/x86_64 -I../src/bsd-user/include -Ibsd-user/freebsd
-I../src/bsd-user/freebsd -I../src/bsd-user/host/x86_64 -Ibsd-user -I../src/bsd-user
-I../src/bsd-user/aarch64 -Iqapi -Itrace -Iui/shader -I/usr/local/include/capstone
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include
-fdiagnostics-color=auto -Wall -Winvalid-pch -std=gnu11 -O2 -g -fstack-protector-strong
-Wempty-body -Wendif-labels -Wexpansion-to-defined -Wformat-security -Wformat-y2k
-Wignored-qualifiers -Winit-self -Wmissing-format-attribute -Wmissing-prototypes
-Wnested-externs -Wold-style-definition -Wredundant-decls -Wstrict-prototypes
-Wtype-limits -Wundef -Wvla -Wwrite-strings -Wno-gnu-variable-sized-type-not-at-end
-Wno-initializer-overrides -Wno-missing-include-dirs -Wno-psabi -Wno-shift-negative-value
-Wno-string-plus-int -Wno-tautological-type-limit-compare -Wno-typedef-redefinition
-Wthread-safety -iquote . -iquote /home/rth/qemu/src -iquote /home/rth/qemu/src/include
-iquote /home/rth/qemu/src/host/include/x86_64 -iquote
/home/rth/qemu/src/host/include/generic -iquote /home/rth/qemu/src/tcg/i386 -pthread
-msse2 -mcx16 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-fno-strict-aliasing -fno-common -fwrapv -ftrivial-auto-var-init=zero
-fzero-call-used-regs=used-gpr -fPIE -DCOMPILING_PER_TARGET
'-DCONFIG_TARGET="aarch64-bsd-user-config-target.h"'
'-DCONFIG_DEVICES="aarch64-bsd-user-config-devices.h"' -MD -MQ
libqemu-aarch64-bsd-user.a.p/bsd-user_aarch64_target_arch_cpu.c.o -MF
libqemu-aarch64-bsd-user.a.p/bsd-user_aarch64_target_arch_cpu.c.o.d -o
libqemu-aarch64-bsd-user.a.p/bsd-user_aarch64_target_arch_cpu.c.o -c
../src/bsd-user/aarch64/target_arch_cpu.c
In file included from ../src/bsd-user/aarch64/target_arch_cpu.c:20:
In file included from ../src/bsd-user/aarch64/target_arch.h:23:
../src/bsd-user/qemu.h:38:10: fatal error: 'target.h' file not found
38 | #include "target.h"
| ^~~~~~~~~~
1 error generated.
r~
next prev parent reply other threads:[~2024-07-24 8:56 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-23 18:07 [PULL 00/14] Bsd user for 9.1 patches Warner Losh
2024-07-23 18:07 ` [PULL 01/14] bsd-user:Add CPU initialization and management functions Warner Losh
2024-07-23 18:07 ` [PULL 02/14] bsd-user:Add AArch64 register handling and related functions Warner Losh
2024-07-23 18:07 ` [PULL 03/14] bsd-user:Add ARM AArch64 support and capabilities Warner Losh
2024-07-23 18:07 ` [PULL 04/14] bsd-user:Add ARM AArch64 signal handling support Warner Losh
2024-07-23 18:07 ` [PULL 05/14] bsd-user:Add get_mcontext function for ARM AArch64 Warner Losh
2024-07-23 18:07 ` [PULL 06/14] bsd-user:Add setup_sigframe_arch " Warner Losh
2024-07-23 18:07 ` [PULL 07/14] bsd-user:Add set_mcontext " Warner Losh
2024-07-23 18:07 ` [PULL 08/14] bsd-user:Add AArch64 improvements and signal handling functions Warner Losh
2024-07-23 18:07 ` [PULL 09/14] bsd-user: Simplify the implementation of execve Warner Losh
2024-07-23 18:07 ` [PULL 10/14] bsd-user: Hard wire aarch64 to be 4k pages only Warner Losh
2024-07-23 18:07 ` [PULL 11/14] bsd-user: Sync fork_start/fork_end with linux-user Warner Losh
2024-07-23 18:07 ` [PULL 12/14] bsd-user: Define TARGET_SIGSTACK_ALIGN and use it to round stack Warner Losh
2024-07-23 18:07 ` [PULL 13/14] bsd-user: Make compile for non-linux user-mode stuff Warner Losh
2024-07-23 18:07 ` [PULL 14/14] bsd-user: Add aarch64 build to tree Warner Losh
2024-07-24 8:55 ` Richard Henderson [this message]
2024-07-24 20:25 ` [PULL 00/14] Bsd user for 9.1 patches Warner Losh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d76f7003-e36e-4b9f-a7db-7e8e962b446d@linaro.org \
--to=richard.henderson@linaro.org \
--cc=imp@bsdimp.com \
--cc=kevans@freebsd.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).