JFYI, we are focusing our efforts around gcc 4.9 and 4.8

4.7 failures can be XFAIL'd for now as far as we're concerned.


On Sun, Apr 19, 2015 at 2:36 PM, Omair Javaid <omair.jav...@linaro.org>
wrote:

> Author: omjavaid
> Date: Sun Apr 19 16:36:06 2015
> New Revision: 235280
>
> URL: http://llvm.org/viewvc/llvm-project?rev=235280&view=rev
> Log:
> Fix LLDB ARM GCC4.7 broken build
>
> Modified:
>     lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
>
> Modified: lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp?rev=235280&r1=235279&r2=235280&view=diff
>
> ==============================================================================
> --- lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
> (original)
> +++ lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp Sun Apr
> 19 16:36:06 2015
> @@ -3956,7 +3956,7 @@ NativeProcessLinux::SingleStep(lldb::tid
>      if (error.Fail())
>          return error;
>
> -    m_threads_stepping_with_breakpoint.emplace(tid, next_pc);
> +    m_threads_stepping_with_breakpoint.insert({tid, next_pc});
>
>      error = Resume(tid, signo);
>      if (error.Fail())
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
>
_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to