Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
26a3472b
Commit
26a3472b
authored
Jan 27, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Disable printf format warnings for non-PE msvcrt modules.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0c0e8b57
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
2 deletions
+31
-2
configure
configure
+28
-0
configure.ac
configure.ac
+2
-1
makedep.c
tools/makedep.c
+1
-1
No files found.
configure
View file @
26a3472b
...
...
@@ -19467,6 +19467,34 @@ printf "%s\n" "$ac_cv_cflags__fshort_wchar" >&6; }
if
test
"x
$ac_cv_cflags__fshort_wchar
"
=
xyes
then
:
MSVCRTFLAGS
=
"
$MSVCRTFLAGS
-fshort-wchar"
fi
{
printf
"%s
\n
"
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking whether the compiler supports -Wno-format"
>
&5
printf
%s
"checking whether the compiler supports -Wno-format... "
>
&6
;
}
if
test
${
ac_cv_cflags__Wno_format
+y
}
then
:
printf
%s
"(cached) "
>
&6
else
$as_nop
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-Wno-format"
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
int main(int argc, char **argv) { return 0; }
_ACEOF
if
ac_fn_c_try_link
"
$LINENO
"
then
:
ac_cv_cflags__Wno_format
=
yes
else
$as_nop
ac_cv_cflags__Wno_format
=
no
fi
rm
-f
core conftest.err conftest.
$ac_objext
conftest.beam
\
conftest
$ac_exeext
conftest.
$ac_ext
CFLAGS
=
$ac_wine_try_cflags_saved
fi
{
printf
"%s
\n
"
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_cflags__Wno_format
"
>
&5
printf
"%s
\n
"
"
$ac_cv_cflags__Wno_format
"
>
&6
;
}
if
test
"x
$ac_cv_cflags__Wno_format
"
=
xyes
then
:
MSVCRTFLAGS
=
"
$MSVCRTFLAGS
-Wno-format"
fi
;;
esac
...
...
configure.ac
View file @
26a3472b
...
...
@@ -1880,7 +1880,8 @@ char*f(const char *h,char n) {return strchr(h,n);}]])],[ac_cv_c_logicalop_noisy=
WINE_TRY_CFLAGS([-Wl,-delayload,autoconftest.dll],[AC_SUBST(DELAYLOADFLAG,["-Wl,-delayload,"])]) ;;
*) MSVCRTFLAGS="-D_WIN32"
WINE_TRY_CFLAGS([-fno-builtin],[MSVCRTFLAGS="$MSVCRTFLAGS -fno-builtin"])
WINE_TRY_CFLAGS([-fshort-wchar],[MSVCRTFLAGS="$MSVCRTFLAGS -fshort-wchar"]) ;;
WINE_TRY_CFLAGS([-fshort-wchar],[MSVCRTFLAGS="$MSVCRTFLAGS -fshort-wchar"])
WINE_TRY_CFLAGS([-Wno-format],[MSVCRTFLAGS="$MSVCRTFLAGS -Wno-format"]) ;;
esac
case $host_cpu in
...
...
tools/makedep.c
View file @
26a3472b
...
...
@@ -3027,6 +3027,7 @@ static void output_source_default( struct makefile *make, struct incl_file *sour
output
(
"%s.o: %s
\n
"
,
obj_dir_path
(
make
,
obj
),
source
->
filename
);
output
(
"
\t
%s$(CC) -c -o $@ %s"
,
cmd_prefix
(
"CC"
),
source
->
filename
);
output_filenames
(
defines
);
output_filenames
(
make
->
extlib
?
extra_cflags_extlib
:
extra_cflags
);
if
(
make
->
sharedlib
||
(
source
->
file
->
flags
&
FLAG_C_UNIX
))
{
output_filenames
(
unix_dllflags
);
...
...
@@ -3038,7 +3039,6 @@ static void output_source_default( struct makefile *make, struct incl_file *sour
if
(
!*
dll_ext
&&
make
->
module
&&
is_crt_module
(
make
->
module
))
output_filename
(
"-fno-builtin"
);
}
output_filenames
(
make
->
extlib
?
extra_cflags_extlib
:
extra_cflags
);
output_filenames
(
cpp_flags
);
output_filename
(
"$(CFLAGS)"
);
output
(
"
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment