C++ Logo

sg15

Advanced search

Re: Header units again.

From: Ben Boeckel <ben.boeckel_at_[hidden]>
Date: Fri, 14 Oct 2022 07:53:44 -0400
On Thu, Oct 13, 2022 at 23:04:05 +0000, Gabriel Dos Reis wrote:
> > - generated source files
>
> For generated source files, how is the problem different from
> importing a named module being imported?

We can't scan sources that don't exist?

> For non-generated source files, would it be conceivable to run the
> dependency scanning just before generating the build definition?

No, because if the scanning is not part of the build graph, a change in
a source requires rerunning the scanning which could mean regenerating
the build definitions. Build tools don't universally support "only rerun
if needed". `ninja` has `restat = 1`, but `make` is specified that if a
recipe runs, its output is *assumed* to have changed (even if it
didn't). How else do you see this working?

> > changing a source file
>
> Only if the change happens after the generation of the build
> definition (e.g. "inner loop"),

The following steps:

1. cmake generates build rules
2. build discovers imports and generates module maps

has a cycle on step 2 when a source is edited. `make` and `ninja` are
good at determining what work needs to be done when a file changes.
You're proposing:

1. cmake generates build rules and dependencies for extant files (and
   generated files that exist on a rerun?)
2. build discovers imports from…other generated files

where 1 is now in the cycle when a source file is edited. CMake is *not*
good at picking its generation up from some state and needs to start
again from the top of the `CMakeLists.txt` to build that up again to
reseed any module map files it is responsible for. It is strictly more
complicated *and* less performant in the common case. Not to mention
that scanning of source files is now part of the "generation" step and
this involves the execution of a compiler/tool per TU. Again, `make` and
`ninja` are far better at this task.

> but the gate to that is the timestamp
> of the build definition generation. And this is similar to the
> generated source file scenario, which in my understanding affects also
> importation of named modules. No?

I'm not sure what mental model you have here where this is better in any
way. Do the graphs in this paper make sense to you?

    https://mathstuf.fedorapeople.org/fortran-modules/fortran-modules.html

--Ben

Received on 2022-10-14 11:53:48