This repository was archived by the owner on Feb 22, 2018. It is now read-only.
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Allow sources to be provided as a file #614
Closed
Description
Currently, all sources for a compilation must be provided as command-line arguments. However, if a module contains many sources, it can run up against command-line length limits. This could be avoided by providing an argument that takes a file that contains newline-separated source file names, like tar
's --files-from
. Bonus points if it's possible to provide files via stdin by passing --sources-from -
or something like that.