[Lldb-commits] [lldb] r229098 - Fix configure+make build broken by r228943

Ilia K ki.stfu at gmail.com
Fri Feb 13 04:13:00 PST 2015


I think it's your (see
http://lab.llvm.org:8011/builders/lldb-x86_64-freebsd/builds/4359):
```

llvm[4]: Linking Release+Asserts executable lldb-gdbserver (without
symbols)/usr/bin/ld: warning: libedit.so.0, needed by
/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Release+Asserts/lib/liblldb.so,
may conflict with libedit.so.7
/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Release+Asserts/lib/liblldb.so:
undefined reference to `lldb_private::PlatformAndroid::Terminate()'
/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Release+Asserts/lib/liblldb.so:
undefined reference to `lldb_private::PlatformAndroid::Initialize()'
clang++: error: linker command failed with exit code 1 (use -v to see
invocation)/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Makefile.rules:1427:
recipe for target
'/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Release+Asserts/bin/lldb-gdbserver'
failedgmake[4]: ***
[/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Release+Asserts/bin/lldb-gdbserver]
Error 1gmake[4]: Leaving directory
'/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/tools/lldb/tools/lldb-gdbserver'
/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/Makefile.rules:883:
recipe for target 'all' failed
gmake[3]: Leaving directory
'/usr/home/buildslave/slave_as-bldslv5/lldb-x86_64-freebsd/llvm/tools/lldb/tools'

```


On Fri, Feb 13, 2015 at 1:39 PM, Tamas Berghammer <tberghammer at google.com>
wrote:

> Author: tberghammer
> Date: Fri Feb 13 04:39:23 2015
> New Revision: 229098
>
> URL: http://llvm.org/viewvc/llvm-project?rev=229098&view=rev
> Log:
> Fix configure+make build broken by r228943
>
> Modified:
>     lldb/trunk/source/Host/Makefile
>     lldb/trunk/source/Plugins/Platform/Makefile
>
> Modified: lldb/trunk/source/Host/Makefile
> URL:
> http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/Makefile?rev=229098&r1=229097&r2=229098&view=diff
>
> ==============================================================================
> --- lldb/trunk/source/Host/Makefile (original)
> +++ lldb/trunk/source/Host/Makefile Fri Feb 13 04:39:23 2015
> @@ -32,4 +32,10 @@ ifeq ($(HOST_OS),MingW)
>  DIRS += windows
>  endif
>
> +ifeq ($(HOST_OS),Android)
> +DIRS += posix
> +DIRS += linux
> +DIRS += android
> +endif
> +
>  include $(LLDB_LEVEL)/Makefile
>
> Modified: lldb/trunk/source/Plugins/Platform/Makefile
> URL:
> http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Makefile?rev=229098&r1=229097&r2=229098&view=diff
>
> ==============================================================================
> --- lldb/trunk/source/Plugins/Platform/Makefile (original)
> +++ lldb/trunk/source/Plugins/Platform/Makefile Fri Feb 13 04:39:23 2015
> @@ -11,7 +11,7 @@ LLDB_LEVEL := ../../..
>
>  include $(LLDB_LEVEL)/../../Makefile.config
>
> -PARALLEL_DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows Kalimba
> +PARALLEL_DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows Kalimba
> Android
>
>  # ifeq ($(HOST_OS),Darwin)
>  #   DIRS += MacOSX
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150213/a336638d/attachment.html>


More information about the lldb-commits mailing list