[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8efbbfe5-1c3f-46df-9bc3-2ba62015f17e@t-8ch.de>
Date: Mon, 3 Jul 2023 12:11:48 +0200
From: Thomas Weißschuh <thomas@...ch.de>
To: Zhangjin Wu <falcon@...ylab.org>
Cc: arnd@...db.de, linux-kernel@...r.kernel.org,
linux-kselftest@...r.kernel.org, linux-riscv@...ts.infradead.org,
w@....eu
Subject: Re: [PATCH v1 03/11] tools/nolibc: include crt.h before arch.h
On 2023-07-03 17:58:32+0800, Zhangjin Wu wrote:
> Hi, Thomas
>
> >
> > On 2023-06-29 02:54:35+0800, Zhangjin Wu wrote:
> > > The crt.h provides a new _start_c() function, which is required by the
> > > new assembly _start entry of arch-<ARCH>.h (included by arch.h), let's
> > > include crt.h before arch.h.
> > >
> > > This '#include "crt.h"' doesn't let the new _start_c() work immediately,
> > > but it is a base of the coming patches to move most of the assembly
> > > _start operations to the _start_c() function for every supported
> > > architecture.
> >
> > Why don't the arch-*.h files include this new header?
> > They are the users of the new symbol.
> >
>
> I have tried so, but since crt.h itself is not architecture specific, add it
> before arch.h will avoid every new arch porting add the same thing again and
> again, currently, we only need to add once. I have even planned to move
> compiler.h out of arch-*.h, but not yet ;-)
While this saves a few lines of code in my opinion it hurts clarity to
rely on implicitly pre-included things.
> every new arch porting
That doesn't seem like a very frequent occurrence :-)
> And also, crt.h may require more features in the future, like init/fini
> support, it may be not only used by arch-*.h files.
Do you have a mechanism in mind that supports init/fini without needing
an ELF parser at runtime? I guess an ELF parser would make it a complete
no-go.
Also the value added by init/fini seems fairly limited for a statically
linked (tiny) application.
> [..]
Powered by blists - more mailing lists