[llvm-commits] [compiler-rt] r163414 - /compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc

Chandler Carruth chandlerc at google.com
Fri Sep 7 13:05:20 PDT 2012


On Fri, Sep 7, 2012 at 3:57 PM, Daniel Dunbar <daniel at zuster.org> wrote:

> Author: ddunbar
> Date: Fri Sep  7 14:57:32 2012
> New Revision: 163414
>
> URL: http://llvm.org/viewvc/llvm-project?rev=163414&view=rev
> Log:
> [asan] Use a relative include path instead of requiring build system
> involvement.
>

Instead of just making this change, how about comment on the change that
introduced the problem? You don't have access to all of the build systems
involved in this project, nor all of the scenarios in which this code is
built. This change doesn't actually work in all of them, which is why we
used the build system in the first place.

What is the actual problem you're trying to solve here? The CMake build
seems to work fine?


>
> Modified:
>     compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc
>
> Modified: compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc
> URL:
> http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc?rev=163414&r1=163413&r2=163414&view=diff
>
> ==============================================================================
> --- compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc
> (original)
> +++ compiler-rt/trunk/lib/asan/dynamic/asan_interceptors_dynamic.cc Fri
> Sep  7 14:57:32 2012
> @@ -14,8 +14,8 @@
>
>  #if defined(__APPLE__)
>
> -#include "asan_interceptors.h"
> -#include "asan_intercepted_functions.h"
> +#include "../asan_interceptors.h"
> +#include "../asan_intercepted_functions.h"
>
>  namespace __asan {
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20120907/0231c32f/attachment.html>


More information about the llvm-commits mailing list