1 # Copyright
(C
) 2013-2023 Free Software Foundation
, Inc.
3 # This
program is free software
; you can redistribute it and
/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation
; either version
3 of the License
, or
6 #
(at your option
) any later version.
8 # This
program is distributed in the hope that it will be useful
,
9 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License
for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with GCC
; see the file COPYING3.
If not see
15 #
<http
://www.gnu.org
/licenses
/>.
17 #
Return 1 if compilation with
-fsanitize
=undefined is error
-free
for trivial
20 set orig_ubsan_options_saved
0
21 set orig_ubsan_options
0
23 proc check_effective_target_fsanitize_undefined
{} {
24 return [check_runtime fsanitize_undefined
{
25 int main
(void
) { return 0; }
26 } "-fsanitize=undefined"]
30 # ubsan_link_flags
-- compute library path and flags to find libubsan.
31 #
(originally from g
++.exp
)
34 proc ubsan_link_flags
{ paths
} {
36 global ld_library_path
38 global ubsan_saved_library_path
43 set shlib_ext
[get_shlib_extension
]
44 set ubsan_saved_library_path $ld_library_path
46 if { $gccpath
!= "" } {
47 if { [file
exists "${gccpath}/libsanitizer/ubsan/.libs/libubsan.a"]
48 ||
[file
exists "${gccpath}/libsanitizer/ubsan/.libs/libubsan.${shlib_ext}"] } {
49 append flags
" -B${gccpath}/libsanitizer/ "
50 append flags
" -B${gccpath}/libsanitizer/ubsan/ "
51 append flags
" -L${gccpath}/libsanitizer/ubsan/.libs"
52 append ld_library_path
":${gccpath}/libsanitizer/ubsan/.libs"
53 append ld_library_path
":${gccpath}/libstdc++-v3/src/.libs"
58 set libubsan
[lookfor_file $
{tool_root_dir
} libubsan
]
59 if { $libubsan
!= "" } {
60 append flags
"-L${libubsan} "
61 append ld_library_path
":${libubsan}"
65 set_ld_library_path_env_vars
71 # ubsan_init
-- called at the start of each subdir of tests
74 proc ubsan_init
{ args } {
75 global TEST_ALWAYS_FLAGS
76 global ALWAYS_CXXFLAGS
78 global ubsan_saved_TEST_ALWAYS_FLAGS
79 global ubsan_saved_ALWAYS_CXXFLAGS
80 global orig_ubsan_options_saved
81 global orig_ubsan_options
83 if { $orig_ubsan_options_saved
== 0 } {
84 # Save the original environment.
85 if [info exists env
(UBSAN_OPTIONS
)] {
86 set orig_ubsan_options
"$env(UBSAN_OPTIONS)"
87 set orig_ubsan_options_saved
1
90 setenv UBSAN_OPTIONS color
=never
93 if ![is_remote host
] {
94 if [info exists TOOL_OPTIONS
] {
95 set link_flags
"[ubsan_link_flags [get_multilibs ${TOOL_OPTIONS}]]"
97 set link_flags
"[ubsan_link_flags [get_multilibs]]"
101 if [info exists TEST_ALWAYS_FLAGS
] {
102 set ubsan_saved_TEST_ALWAYS_FLAGS $TEST_ALWAYS_FLAGS
104 if [info exists ALWAYS_CXXFLAGS
] {
105 set ubsan_saved_ALWAYS_CXXFLAGS $ALWAYS_CXXFLAGS
106 set ALWAYS_CXXFLAGS
[concat
"{ldflags=$link_flags}" $ALWAYS_CXXFLAGS]
108 if [info exists TEST_ALWAYS_FLAGS
] {
109 set TEST_ALWAYS_FLAGS
"$link_flags $TEST_ALWAYS_FLAGS"
111 set TEST_ALWAYS_FLAGS
"$link_flags"
117 # ubsan_finish
-- called at the end of each subdir of tests
120 proc ubsan_finish
{ args } {
121 global TEST_ALWAYS_FLAGS
122 global ubsan_saved_TEST_ALWAYS_FLAGS
123 global ubsan_saved_ALWAYS_CXXFLAGS
124 global ubsan_saved_library_path
125 global ld_library_path
126 global orig_ubsan_options_saved
127 global orig_ubsan_options
129 if { $orig_ubsan_options_saved
} {
130 setenv UBSAN_OPTIONS
"$orig_ubsan_options"
131 } elseif
[info exists env
(UBSAN_OPTIONS
)] {
132 unsetenv UBSAN_OPTIONS
135 if [info exists ubsan_saved_ALWAYS_CXXFLAGS
] {
136 set ALWAYS_CXXFLAGS $ubsan_saved_ALWAYS_CXXFLAGS
138 if [info exists ubsan_saved_TEST_ALWAYS_FLAGS
] {
139 set TEST_ALWAYS_FLAGS $ubsan_saved_TEST_ALWAYS_FLAGS
141 unset TEST_ALWAYS_FLAGS
144 if [info exists ubsan_saved_library_path
] {
145 set ld_library_path $ubsan_saved_library_path
146 set_ld_library_path_env_vars
148 clear_effective_target_cache