CBuild
C++ build system with scripts written in c++
|
#include <gcc_hash.hpp>
Public Member Functions | |
GCCHash (std::string target_id) | |
virtual lib::map< std::string, std::string > | get_files_for_recompilation (std::vector< std::string > file_list, std::vector< std::string > objects_list) override |
Pass a list of source files and coresponding object files and get a map of source-object that need to be recompiled (check only hash and dependencie hash, not any arg canges) | |
virtual int | compare_and_set_cargs (std::vector< std::string > cargs) override |
Compare compile args and update metadata. | |
virtual int | compare_and_set_largs (std::vector< std::string > largs) override |
Compare link args and update metadata. | |
virtual int | compare_and_set_commands (std::string compiler, std::string linker, std::string packer) override |
Compare shell commands used for compilation and update metadata. | |
virtual int | compare_and_set_output_file (std::string out) override |
Compare output file name and update metadata. | |
virtual void | set_target_meta (std::vector< std::string > cargs, std::vector< std::string > largs, std::string out, std::string compiler, std::string linker, std::string packer) override |
Set the target meta. | |
![]() | |
Hash (std::string target_id) | |
Additional Inherited Members | |
![]() | |
std::string | target_id |
Definition at line 34 of file gcc_hash.hpp.
|
inline |
Definition at line 37 of file gcc_hash.hpp.
|
inlineoverridevirtual |
Compare compile args and update metadata.
cargs | => std::vector<std::string> -> Compile args |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 46 of file gcc_hash.hpp.
References CBuild::target_metadata_file::cargs, CBuild::read_target_metadata(), CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare shell commands used for compilation and update metadata.
compiler | => std::string -> Command used for compiling source files |
linker | => std::string -> Command used for linking objects |
packer | => std::string -> Command used for packing static libs |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 70 of file gcc_hash.hpp.
References CBuild::target_metadata_file::compiler, CBuild::target_metadata_file::linker, CBuild::target_metadata_file::packer, CBuild::read_target_metadata(), CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare link args and update metadata.
cargs | => std::vector<std::string> -> Compile args |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 58 of file gcc_hash.hpp.
References CBuild::target_metadata_file::largs, CBuild::read_target_metadata(), CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare output file name and update metadata.
out | => std::string -> Output name |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 85 of file gcc_hash.hpp.
References CBuild::target_metadata_file::out, CBuild::read_target_metadata(), CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Pass a list of source files and coresponding object files and get a map of source-object that need to be recompiled (check only hash and dependencie hash, not any arg canges)
file_list | => std::vector<std::string> -> List of source files |
objects_list | => std::vector<std::string> -> List of object files |
Implements CBuild::Hash.
Definition at line 39 of file gcc_hash.hpp.
References CBuild::gcc_hash_impl(), and CBuild::Hash::target_id.
|
inlineoverridevirtual |
Set the target meta.
cargs | => std::vector<std::string> -> Compile args |
largs | => std::vector<std::string> -> Link args |
out | => std::string -> Output binary name |
compiler | => std::string -> Command used for compiling source files |
linker | => std::string -> Command used for linking objects |
packer | => std::string -> Command used for packing static libs |
Implements CBuild::Hash.
Definition at line 97 of file gcc_hash.hpp.
References CBuild::target_metadata_file::cargs, CBuild::target_metadata_file::compiler, CBuild::target_metadata_file::largs, CBuild::target_metadata_file::linker, CBuild::target_metadata_file::out, CBuild::target_metadata_file::packer, CBuild::Hash::target_id, and CBuild::write_target_metadata().