actonlang / acton

The Acton Programming Language
https://www.acton-lang.org/
BSD 3-Clause "New" or "Revised" License
80 stars 7 forks source link

Remove orphaned .root.c files #1931

Closed plajjan closed 1 month ago

plajjan commented 1 month ago

.root.c file are generated when a module has a root actor. If a .act module had a root actor previously which is now removed, the .root.c file should be removed too. Since determining which files previously had a root actor that no longer has one is sort of tedious, we just remove all .root.c files first and recreate them later if necessary.

Fixes #1930