mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 06:22:25 +00:00
Fix array assignment size validation to accept equal sizes.
This commit is contained in:
parent
1e9c1af8ef
commit
e85091289e
2 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ void determineOS() {
|
|||
#ifdef _WIN32
|
||||
os = "windows"; platform = "windows"; binext = ".exe"; staticlink = "";
|
||||
#else
|
||||
os = "unknown"; platform = "unix"; binext = ""; staticlink = "-static";
|
||||
os = "unknown"; platform = "unix"; binext = ""; staticlink = " -static";
|
||||
|
||||
struct utsname sys;
|
||||
if (uname(&sys)<0) fail("Couldn't get sys name - uname() failed.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue