changeset 7450:2d9ab7717e23

Configure: added explicit ngx_binext to the linker output argument. Unlike with GCC or MSVC, Clang linker doesn't auto-append ".exe" to the name of the output binary when building on win32.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 30 Jan 2019 19:28:27 +0300
parents 3c51385e5da1
children d864ee67b5ae
files auto/make
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/auto/make
+++ b/auto/make
@@ -229,7 +229,7 @@ build:	binary modules manpage
 binary:	$NGX_OBJS${ngx_dirsep}nginx$ngx_binext
 
 $NGX_OBJS${ngx_dirsep}nginx$ngx_binext:	$ngx_deps$ngx_spacer
-	\$(LINK) $ngx_long_start$ngx_binout$NGX_OBJS${ngx_dirsep}nginx$ngx_long_cont$ngx_objs$ngx_libs$ngx_link$ngx_main_link
+	\$(LINK) $ngx_long_start$ngx_binout$NGX_OBJS${ngx_dirsep}nginx$ngx_binext$ngx_long_cont$ngx_objs$ngx_libs$ngx_link$ngx_main_link
 	$ngx_rcc
 $ngx_long_end