Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Target common compile flags #88

Merged
merged 13 commits into from
Aug 8, 2021
1 change: 1 addition & 0 deletions buildcc/lib/target/fbs/target.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ table Target {

// Flags
preprocessor_flags:[string];
common_compile_flags:[string];
c_compile_flags:[string];
cpp_compile_flags:[string];
link_flags:[string];
Expand Down
4 changes: 4 additions & 0 deletions buildcc/lib/target/include/target/fbs_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ class FbsLoader {
const std::unordered_set<std::string> &GetLoadedPreprocessorFlags() const {
return loaded_preprocessor_flags_;
}
const std::unordered_set<std::string> &GetLoadedCommonCompileFlags() const {
return loaded_common_compile_flags_;
}
const std::unordered_set<std::string> &GetLoadedCCompileFlags() const {
return loaded_c_compile_flags_;
}
Expand Down Expand Up @@ -87,6 +90,7 @@ class FbsLoader {
fs_unordered_set loaded_lib_dirs_;

std::unordered_set<std::string> loaded_preprocessor_flags_;
std::unordered_set<std::string> loaded_common_compile_flags_;
std::unordered_set<std::string> loaded_c_compile_flags_;
std::unordered_set<std::string> loaded_cpp_compile_flags_;
std::unordered_set<std::string> loaded_link_flags_;
Expand Down
11 changes: 9 additions & 2 deletions buildcc/lib/target/include/target/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <filesystem>
#include <functional>
#include <optional>
#include <string>
#include <string_view>
#include <unordered_map>
Expand Down Expand Up @@ -113,6 +114,7 @@ class Target {

// * Flags
void AddPreprocessorFlag(const std::string &flag);
void AddCommonCompileFlag(const std::string &flag);
void AddCCompileFlag(const std::string &flag);
void AddCppCompileFlag(const std::string &flag);
void AddLinkFlag(const std::string &flag);
Expand Down Expand Up @@ -163,6 +165,9 @@ class Target {
const std::unordered_set<std::string> &GetCurrentPreprocessorFlags() const {
return current_preprocessor_flags_;
}
const std::unordered_set<std::string> &GetCurrentCommonCompileFlags() const {
return current_common_compile_flags_;
}
const std::unordered_set<std::string> &GetCurrentCCompileFlags() const {
return current_c_compile_flags_;
}
Expand Down Expand Up @@ -190,8 +195,8 @@ class Target {
std::unordered_set<std::string> valid_header_ext_{".h", ".hpp"};

std::string_view compile_command_{
"{compiler} {preprocessor_flags} {include_dirs} {compile_flags} -o "
"{output} -c {input}"};
"{compiler} {preprocessor_flags} {include_dirs} {common_compile_flags} "
"{compile_flags} -o {output} -c {input}"};
std::string_view link_command_{
"{cpp_compiler} {link_flags} {compiled_sources} -o {output} "
"{lib_dirs} {lib_deps}"};
Expand All @@ -206,6 +211,7 @@ class Target {

const internal::Path &GetCompiledSourcePath(const fs::path &source) const;
internal::path_unordered_set GetCompiledSources() const;
std::optional<std::string> GetCompiledFlags(FileExtType type) const;

private:
void Initialize();
Expand Down Expand Up @@ -286,6 +292,7 @@ class Target {

// TODO, Common flags for asm, c and cpp files
std::unordered_set<std::string> current_preprocessor_flags_;
std::unordered_set<std::string> current_common_compile_flags_;
std::unordered_set<std::string> current_c_compile_flags_;
std::unordered_set<std::string> current_cpp_compile_flags_;
std::unordered_set<std::string> current_link_flags_;
Expand Down
1 change: 1 addition & 0 deletions buildcc/lib/target/src/fbs/fbs_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ bool FbsLoader::Load() {
Extract(target->lib_dirs(), loaded_lib_dirs_);

Extract(target->preprocessor_flags(), loaded_preprocessor_flags_);
Extract(target->common_compile_flags(), loaded_common_compile_flags_);
Extract(target->c_compile_flags(), loaded_c_compile_flags_);
Extract(target->cpp_compile_flags(), loaded_cpp_compile_flags_);
Extract(target->link_flags(), loaded_link_flags_);
Expand Down
9 changes: 6 additions & 3 deletions buildcc/lib/target/src/fbs/fbs_storer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,20 @@ bool Target::Store() {

auto fbs_preprocessor_flags =
get_fbs_vector_string(builder, current_preprocessor_flags_);
auto fbs_c_compiler_flags =
auto fbs_common_compile_flags =
get_fbs_vector_string(builder, current_common_compile_flags_);
auto fbs_c_compile_flags =
get_fbs_vector_string(builder, current_c_compile_flags_);
auto fbs_cpp_compiler_flags =
auto fbs_cpp_compile_flags =
get_fbs_vector_string(builder, current_cpp_compile_flags_);
auto fbs_link_flags = get_fbs_vector_string(builder, current_link_flags_);

auto fbs_target = fbs::CreateTargetDirect(
builder, name_.c_str(), fbs_target_type, &fbs_source_files,
&fbs_header_files, &fbs_lib_deps, &fbs_external_lib_deps,
&fbs_include_dirs, &fbs_lib_dirs, &fbs_preprocessor_flags,
&fbs_c_compiler_flags, &fbs_cpp_compiler_flags, &fbs_link_flags);
&fbs_common_compile_flags, &fbs_c_compile_flags, &fbs_cpp_compile_flags,
&fbs_link_flags);
fbs::FinishTargetBuffer(builder, fbs_target);

auto file_path = GetBinaryPath();
Expand Down
8 changes: 6 additions & 2 deletions buildcc/lib/target/src/target/build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ void Target::Build() {
internal::aggregate_with_prefix(prefix_lib_dir_, current_lib_dirs_)},

{"preprocessor_flags", internal::aggregate(current_preprocessor_flags_)},
{"common_compile_flags",
internal::aggregate(current_common_compile_flags_)},
{"link_flags", internal::aggregate(current_link_flags_)},

// Toolchain executables here
Expand All @@ -63,11 +65,12 @@ void Target::Build() {
} else {
BuildRecompile();
}

LinkTargetTask(dirty_);
}

void Target::BuildCompile() {
CompileSources();
LinkTargetTask(true);
dirty_ = true;
first_build_ = true;
}
Expand All @@ -87,6 +90,8 @@ void Target::BuildRecompile() {
// TODO, Toolchain, ASM, C, C++ compiler related to a particular name
RecheckFlags(loader_.GetLoadedPreprocessorFlags(),
current_preprocessor_flags_);
RecheckFlags(loader_.GetLoadedCommonCompileFlags(),
current_common_compile_flags_);
RecheckFlags(loader_.GetLoadedCCompileFlags(), current_c_compile_flags_);
RecheckFlags(loader_.GetLoadedCppCompileFlags(), current_cpp_compile_flags_);
RecheckDirs(loader_.GetLoadedIncludeDirs(), current_include_dirs_);
Expand All @@ -108,7 +113,6 @@ void Target::BuildRecompile() {
current_external_lib_deps_);
// TODO, Verify the `physical` presence of the target if dirty_ == false

LinkTargetTask(dirty_);
rebuild_ = dirty_;
}

Expand Down
3 changes: 3 additions & 0 deletions buildcc/lib/target/src/target/flags.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ namespace buildcc::base {
void Target::AddPreprocessorFlag(const std::string &flag) {
current_preprocessor_flags_.insert(flag);
}
void Target::AddCommonCompileFlag(const std::string &flag) {
current_common_compile_flags_.insert(flag);
}
void Target::AddCCompileFlag(const std::string &flag) {
current_c_compile_flags_.insert(flag);
}
Expand Down
4 changes: 1 addition & 3 deletions buildcc/lib/target/src/target/source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,7 @@ std::string Target::CompileCommand(const fs::path &current_source) const {
// TODO, This doesn't look clean
const auto type = GetFileExtType(current_source);
const std::string &aggregated_compile_flags =
type == FileExtType::C ? aggregated_c_compile_flags_
: type == FileExtType::Cpp ? aggregated_cpp_compile_flags_
: "";
GetCompiledFlags(type).value_or("");

return command_.Construct(compile_command_,
{
Expand Down
14 changes: 14 additions & 0 deletions buildcc/lib/target/src/target/target.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,20 @@ FileExtType Target::GetFileExtType(const fs::path &filepath) const {
return type;
}

std::optional<std::string> Target::GetCompiledFlags(FileExtType type) const {
switch (type) {
case FileExtType::C:
return aggregated_c_compile_flags_;
break;
case FileExtType::Cpp:
return aggregated_cpp_compile_flags_;
break;
default:
break;
}
return {};
}

bool Target::IsValidSource(const fs::path &sourcepath) const {
bool valid = false;
switch (GetFileExtType(sourcepath)) {
Expand Down
2 changes: 2 additions & 0 deletions buildcc/lib/target/src/target/tasks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ namespace buildcc::base {

void Target::CompileTargetTask(std::vector<fs::path> &&compile_sources,
std::vector<fs::path> &&dummy_compile_sources) {
env::log_trace(name_, __FUNCTION__);

compile_task_ =
tf_.emplace([this, compile_sources,
dummy_compile_sources](tf::Subflow &subflow) {
Expand Down
9 changes: 3 additions & 6 deletions buildcc/targets/include/targets/target_gcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,13 @@ constexpr std::string_view kGccDynamicLibExt = ".so";
constexpr std::string_view kGccPrefixIncludeDir = "-I";
constexpr std::string_view kGccPrefixLibDir = "-L";
constexpr std::string_view kGccGenericCompileCommand =
"{compiler} {preprocessor_flags} {include_dirs} {compile_flags} -o "
"{output} -c {input}";
"{compiler} {preprocessor_flags} {include_dirs} {common_compile_flags} "
"{compile_flags} -o {output} -c {input}";
constexpr std::string_view kGccExecutableLinkCommand =
"{cpp_compiler} {link_flags} {compiled_sources} -o {output} "
"{lib_dirs} {lib_deps}";
constexpr std::string_view kGccStaticLibLinkCommand =
"{archiver} rcs {output} {compiled_sources}";
constexpr std::string_view kGccDynamicLibCompileCommand =
"{compiler} {preprocessor_flags} {include_dirs} {compile_flags} "
"-fpic -o {output} -c {input}";
constexpr std::string_view kGccDynamicLibLinkCommand =
"{cpp_compiler} -shared {link_flags} {compiled_sources} -o {output}";

Expand Down Expand Up @@ -70,8 +67,8 @@ class DynamicTarget_gcc : public base::Target {
: Target(name, base::TargetType::DynamicLibrary, toolchain,
target_path_relative_to_root) {
target_ext_ = kGccDynamicLibExt;
compile_command_ = kGccDynamicLibCompileCommand;
link_command_ = kGccDynamicLibLinkCommand;
AddCommonCompileFlag("-fpic");
}
};

Expand Down
11 changes: 11 additions & 0 deletions buildcc/targets/include/targets/target_generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ namespace buildcc {

struct SyncTargetOptions {
bool preprocessor_flags_{false};
bool common_compile_flags_{false};
bool c_compile_flags_{false};
bool cpp_compile_flags_{false};
bool link_flags_{false};
Expand All @@ -46,6 +47,12 @@ inline void SyncTargets(base::Target &dest, const base::Target &source,
}
}

if (options.common_compile_flags_) {
for (const auto &flag : source.GetCurrentCommonCompileFlags()) {
dest.AddCommonCompileFlag(flag);
}
}

if (options.c_compile_flags_) {
for (const auto &flag : source.GetCurrentCCompileFlags()) {
dest.AddCCompileFlag(flag);
Expand Down Expand Up @@ -90,6 +97,7 @@ class ExecutableTarget_generic : public base::Target {
}
SyncTargets(*this, *target,
{
.common_compile_flags_ = true,
.c_compile_flags_ = true,
.cpp_compile_flags_ = true,
.link_flags_ = true,
Expand Down Expand Up @@ -123,6 +131,7 @@ class StaticTarget_generic : public base::Target {
}
SyncTargets(*this, *target,
{
.common_compile_flags_ = true,
.c_compile_flags_ = true,
.cpp_compile_flags_ = true,
.link_flags_ = true,
Expand Down Expand Up @@ -155,6 +164,7 @@ class DynamicTarget_generic : public base::Target {
}
SyncTargets(*this, *target,
{
.common_compile_flags_ = true,
.c_compile_flags_ = true,
.cpp_compile_flags_ = true,
.link_flags_ = true,
Expand Down Expand Up @@ -188,6 +198,7 @@ class Target_generic : public base::Target {
}
SyncTargets(*this, *target,
{
.common_compile_flags_ = true,
.c_compile_flags_ = true,
.cpp_compile_flags_ = true,
.link_flags_ = true,
Expand Down
4 changes: 2 additions & 2 deletions buildcc/targets/include/targets/target_msvc.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ constexpr std::string_view kMsvcPrefixIncludeDir = "/I";
constexpr std::string_view kMsvcPrefixLibDir = "/LIBPATH:";
// TODO, Split this into individual CompileCommands if any differences occur
constexpr std::string_view kMsvcCompileCommand =
"{compiler} {preprocessor_flags} {include_dirs} {compile_flags} "
"/Fo{output} /c {input}";
"{compiler} {preprocessor_flags} {include_dirs} {common_compile_flags} "
"{compile_flags} /Fo{output} /c {input}";
constexpr std::string_view kMsvcExecutableLinkCommand =
"{linker} {link_flags} {lib_dirs} /OUT:{output} {lib_deps} "
"{compiled_sources}";
Expand Down