This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH} Enable libsanitizer on darwin
- From: Rainer Orth <ro at CeBiTec dot Uni-Bielefeld dot DE>
- To: Jack Howarth <howarth at bromo dot med dot uc dot edu>
- Cc: gcc-patches at gcc dot gnu dot org, wmi at google dot com, dodji at redhat dot com, mikestump at comcast dot net, iain at codesourcery dot com
- Date: Wed, 14 Nov 2012 15:26:54 +0100
- Subject: Re: [PATCH} Enable libsanitizer on darwin
- References: <20121114142219.GA28404@bromo.med.uc.edu>
Jack Howarth <howarth@bromo.med.uc.edu> writes:
> Index: libsanitizer/configure.tgt
> ===================================================================
> --- libsanitizer/configure.tgt (revision 193500)
> +++ libsanitizer/configure.tgt (working copy)
> @@ -20,7 +20,7 @@
>
> # Filter out unsupported systems.
> case "${target}" in
> - x86_64-*-linux* | i?86-*-linux*)
> + x86_64-*-linux* | i?86-*-linux* | *-*-darwin* )
> ;;
> *)
> UNSUPPORTED=1
Please no: keep the case labels sorted alphabetically by target,
something like
case i?86-*-linux* | x86_64-*-linux*)
;;
case *-*-darwin*)
;;
Although I suppose this is wrong: currently, libsanitizer only supports
x86, not powerpc.
Rainer
--
-----------------------------------------------------------------------------
Rainer Orth, Center for Biotechnology, Bielefeld University