fix(build_options): detect -z flag

This commit is contained in:
Pierre-Nicolas Clauss
2023-10-26 13:47:20 +02:00
committed by Christoffer Lerno
parent a7d032df21
commit 7d16d9acaf
2 changed files with 2 additions and 2 deletions

View File

@@ -486,7 +486,7 @@ static void parse_option(BuildOptions *options)
case 'h':
break;
case 'z':
if (match_shortopt("U"))
if (match_shortopt("z"))
{
if (at_end()) error_exit("error: -z needs a value.");
add_linker_arg(options, next_arg());

View File

@@ -1 +1 @@
#define COMPILER_VERSION "0.4.687"
#define COMPILER_VERSION "0.4.688"