Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3157880f
Commit
3157880f
authored
Dec 06, 2012
by
Jack Howarth
Committed by
Kostya Serebryany
Dec 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR55599/sanitizer by disabling static libasan on darwin
From-SVN: r194257
parent
9e04d8a2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
5 deletions
+14
-5
gcc/ChangeLog
+5
-0
gcc/config/darwin.h
+1
-3
libsanitizer/ChangeLog
+6
-0
libsanitizer/configure
+1
-1
libsanitizer/configure.ac
+1
-1
No files found.
gcc/ChangeLog
View file @
3157880f
2012
-
12
-
06
Jack
Howarth
<
howarth
@bromo
.
med
.
uc
.
edu
>
PR
55599
/
sanitizer
*
config
/
darwin
.
h
(
LINK_COMMAND_SPEC_A
)
:
Remove
static
libasan
support
.
2012
-
12
-
06
Jakub
Jelinek
<
jakub
@redhat
.
com
>
PR
middle
-
end
/
43631
gcc/config/darwin.h
View file @
3157880f
...
...
@@ -180,9 +180,7 @@ extern GTY(()) int darwin_ms_struct;
%{L*} %(link_libgcc) %o %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} \
%{fopenmp|ftree-parallelize-loops=*: \
%{static|static-libgcc|static-libstdc++|static-libgfortran: libgomp.a%s; : -lgomp } } \
%{fsanitize=address: \
%{static|static-libasan|static-libgcc|static-libgfortran: -framework CoreFoundation -lstdc++ libasan.a%s; \
static-libstdc++: -framework CoreFoundation libstdc++.a%s libasan.a%s; : -framework CoreFoundation -lasan } } \
%{fsanitize=address: -framework CoreFoundation -lasan } \
%{fgnu-tm: \
%{static|static-libgcc|static-libstdc++|static-libgfortran: libitm.a%s; : -litm } } \
%{!nostdlib:%{!nodefaultlibs:\
...
...
libsanitizer/ChangeLog
View file @
3157880f
2012-12-06 Jack Howarth <howarth@bromo.med.uc.edu>
PR 55599/sanitizer
* configure.ac: Set enable_static=no on darwin.
* configure: Regenerated.
2012-12-06 Kostya Serebryany <kcc@google.com>
* All files: Merge from upstream r169392.
...
...
libsanitizer/configure
View file @
3157880f
...
...
@@ -14497,7 +14497,7 @@ fi
case
"
$host
"
in
*
-
*
-darwin
*
)
MAC_INTERPOSE
=
true
;;
*
-
*
-darwin
*
)
MAC_INTERPOSE
=
true
;
enable_static
=
no
;
;
*
)
MAC_INTERPOSE
=
false
;;
esac
if
$MAC_INTERPOSE
;
then
...
...
libsanitizer/configure.ac
View file @
3157880f
...
...
@@ -81,7 +81,7 @@ unset TSAN_SUPPORTED
AM_CONDITIONAL(TSAN_SUPPORTED, [test "x$TSAN_SUPPORTED" = "xyes"])
case "$host" in
*-*-darwin*) MAC_INTERPOSE=true ;;
*-*-darwin*) MAC_INTERPOSE=true ;
enable_static=no ;
;
*) MAC_INTERPOSE=false ;;
esac
AM_CONDITIONAL(USING_MAC_INTERPOSE, $MAC_INTERPOSE)
...
...
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