Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 92711fe8 authored by Gabe Black's avatar Gabe Black
Browse files

scons: Disable some warnings in clang.

The defaulted-function-deleted warning triggers in generated code which
would be very tricky to address.

The c99-designator refers to using an array index to specify which
element of an array is being initialized. This makes the code more
clear and is supported by both g++ and clang++. Designated initializers
for structures are being introduced in C++20, but there is no word I
could find on arrays. This warning option seems to only exist in clang
versions 10 and up, so we can only use it on those versions.

Change-Id: I8fb858e643814638c552a49336db2672be8e43c8
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/29396


Reviewed-by: default avatarJason Lowe-Power <power.jg@gmail.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: default avatarkokoro <noreply+kokoro@google.com>
parent 074e230d
No related branches found
No related tags found
No related merge requests found
......@@ -475,7 +475,10 @@ elif main['CLANG']:
# use struct hash and class hash
# interchangeably.
'-Wno-mismatched-tags',
'-Wno-defaulted-function-deleted',
])
if compareVersions(clang_version, "10.0") >= 0:
main.Append(CCFLAGS=['-Wno-c99-designator'])
main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment