uppbox: MakePosixIntall: umks32 NOSSL flag; cosmetics

This commit is contained in:
Mirek Fidler 2023-06-03 01:54:48 +02:00
parent e00bdcecc7
commit 1a0e604510
4 changed files with 6 additions and 7 deletions

View file

@ -127,7 +127,7 @@ CONSOLE_APP_MAIN
#endif
#ifdef PLATFORM_LINUX
Syx(GetHomeDirFile("bin/umk") + " ./uppsrc umk GCC32 " OPTS + release + "/umks32");
Syx(GetHomeDirFile("bin/umk") + " ./uppsrc umk GCC32 " OPTS + "+NOSSL " + release + "/umks32");
#endif
Syx(GetHomeDirFile("bin/umk") + " ./uppsrc umk GCC +NOMM -rvsM");

View file

@ -262,7 +262,6 @@ byte addc64(uint64& result, const uint64& value, byte carry) {
force_inline
byte addc64(uint64& r, uint64 a, byte carry)
{
uint64_t r1 = r;
r += a + carry;
return carry ? r <= a : r < a;
}

View file

@ -151,7 +151,6 @@ void UppHubDlg::Install(const Index<String>& ii_)
bool UppHubAuto(const String& main)
{
bool noprompt = false;
Index<String> pmissing;
for(;;) {
Workspace wspc;
@ -176,7 +175,6 @@ bool UppHubAuto(const String& main)
if(found.GetCount() == missing.GetCount() && missing != pmissing) {
dlg.Install(found);
noprompt = true;
pmissing = clone(missing);
continue;
}

View file

@ -1,8 +1,9 @@
description "Commandline U++ package/assembly builder\377";
uses
ide\Builders,
Core/SSL;
ide\Builders;
uses(!NOSSL) Core/SSL;
file
umake.h,
@ -15,5 +16,6 @@ file
mainconfig
"" = "",
"" = "NOMM";
"" = "NOMM",
"" = "NOSSL";