NAME
sp_includer - Form include statements
SYNOPSIS
sp_includer
file1.cpp file2.cpp ...
DESCRIPTION
sp_includer simply takes all of the arguments on the command line and prints #include statements for each argument.
This allows multiple files to be compiled in one pass; rather then using gcc file1.cpp gcc file2.cpp gcc file3.cpp
or the equivalently slow
gcc file1.cpp file2.cpp file3.cpp
this program allows
sp_includer file1.cpp file2.cpp file3.cpp > file_CONCAT.cpp
gcc file_CONCAT.cpp
where any headers all files require will be read only once. With the SystemC headers, this saves ~5 seconds per file, many minutes across an entire large project.
ARGUMENTS
SEE ALSO
SystemC::SystemPerl
AUTHORS
Wilson Snyder <wsnyder@wsnyder.org>