aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index a812b8a..365cb1b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -137,7 +137,7 @@ static void usageBuild(bool run)
printf(" --debug|--release Optimization level to build project and dependencies with (if not a system package) - Optional (default: --debug)\n");
printf(" --sanitize Add runtime address/undefined behavior sanitization. Program can be up to 3 times slower and use 10 times as much RAM. Ignored if compiler doesn't support sanitization - Optional (default: none)\n");
printf(" --platform The platform to build for - Optional (default: the running platform)\n");
- printf(" --flto Use link-time optimization. May increase compile times - Optional (default: false)\n");
+ printf(" --lto Use link-time optimization. May increase compile times - Optional (default: false)\n");
printf("Examples:\n");
printf(" sibs %s\n", run ? "run" : "build");
if(run)
@@ -516,7 +516,7 @@ static int buildProject(int argc, const _tinydir_char_t **argv, bool run)
FileString projectPath;
Sanitize sanitize = Sanitize::NONE;
FileString platformName;
- bool use_flto = false;
+ bool use_lto = false;
std::vector<const _tinydir_char_t*> run_args;
for(int i = 0; i < argc; ++i)
@@ -540,9 +540,9 @@ static int buildProject(int argc, const _tinydir_char_t **argv, bool run)
}
optimizationLevel = OPT_LEV_RELEASE;
}
- else if(_tinydir_strcmp(arg, TINYDIR_STRING("--flto")) == 0)
+ else if(_tinydir_strcmp(arg, TINYDIR_STRING("--lto")) == 0)
{
- use_flto = true;
+ use_lto = true;
}
else if(_tinydir_strncmp(arg, TINYDIR_STRING("--sanitize="), 11) == 0)
{
@@ -651,7 +651,7 @@ static int buildProject(int argc, const _tinydir_char_t **argv, bool run)
sibsConfig.showWarnings = true;
sibsConfig.platform = platform;
sibsConfig.setSanitize(sanitize);
- sibsConfig.use_flto = use_flto;
+ sibsConfig.use_lto = use_lto;
return buildProject(projectPath, projectConfFilePath, sibsConfig, run, escape_args(run_args));
}
@@ -1235,7 +1235,7 @@ static int packageProject(int argc, const _tinydir_char_t **argv)
sibsConfig.showWarnings = true;
sibsConfig.packaging = packagingType == PackagingType::STATIC;
sibsConfig.bundling = (packagingType == PackagingType::BUNDLE) || (packagingType == PackagingType::BUNDLE_INSTALL);
- sibsConfig.use_flto = true;
+ sibsConfig.use_lto = true;
int result = buildProject(projectPath, projectConfFilePath, sibsConfig, false, TINYDIR_STRING(""));
if(result != 0)
return result;