When I compile an Agda program that uses a standard library, the compiler spends long lines of print, such as:
Skipping Relation.Binary.Consequences (/home/owen/install/lib-0.6/src/Relation/Binary/Consequences.agdai). Skipping Relation.Binary.Indexed.Core (/home/owen/install/lib-0.6/src/Relation/Binary/Indexed/Core.agdai). Skipping Relation.Binary (/home/owen/install/lib-0.6/src/Relation/Binary.agdai).
I assume that the reason it safely skips is because they are already compiled (there are already .agdai files in the directories). But he still spends a lot of time skipping them, and the compilation takes more than a minute.
Is there a way to avoid any extra work on each compiler?
source share