| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Can't be done on the user's end because these libraries all need to be
linked after libc++_static.
Change-Id: Ib21364e6f43689cf59da31d6f561919731ef8272
|
|
|
|
|
| |
Bug: 19567451
Change-Id: I6d15259520c9813df1a44d9244c99482f713d114
|
|
|
|
|
| |
Bug: 19567451
Change-Id: Ie1de436db74b727421449b43b192e9599ca8fca6
|
|
|
|
|
|
|
|
|
| |
The Mac linker doesn't understand --start-group, which is needed for
properly linking libgcc/libc statically. It isn't needed for dynamic
executables though, so use that driver behavior where appropriate.
Bug: 19567451
Change-Id: Ifeb03bea55bc87561c64ddafdb99f664fef0f00e
|
|
|
|
|
|
|
|
|
|
|
| |
BUILD_HOST_static=1 forces all host binaries to be statically linked.
Since -nodefaultlibs was passed (to disable libstdc++), libgcc wasn't
being passed. This change emulates the driver's behavior.
Also fix default STL selection for BUILD_HOST_static.
Bug: 19567451
Change-Id: I617aab782d40ac76ca5a7d9dddf0f202a4e3a69b
|
|
|
|
|
|
|
|
|
| |
Previously, code defaulted to using libstdc++ (which was GNU libstdc++
on the host, or Bionic's "libstdc++" on the target). Now we default to
libc++. The exception for this is when using mingw, because we cannot
build libc++ for mingw.
Change-Id: I68726fa26cdcb6263f17c838d3e859debd57fae1
|
|
|
|
| |
Change-Id: I060c9c65b07efe89a308fccf71a1096424a7de39
|
|
|
|
|
|
|
| |
It is libstdc++.so, after all, and the naming makes sense for the host
this way (since it also uses libstdc++).
Change-Id: If37ffa015f7967a928ea47a290363d7696c4ce35
|
|
|
|
|
|
| |
LOCAL_CXX_STL := stlport should just use the default STL on the host.
Change-Id: Iede1b2d8884e237a10e000e5835addb768c8f78d
|
|
Because LOCAL_CXX_STL modifies a module's required shared libaries,
we need this for also prebuilt shared libraries and executables.
Change-Id: I418c26143999a613c40aadf990f131b123e0ac3d
|