diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-01-15 18:47:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-17 22:04:50 +0000 |
commit | 0df3c481309e89b93e8a57773eb9c470b4dd13a7 (patch) | |
tree | d8f0bbaa5672dee61273d5502546409034d0a5d8 /meta/conf | |
parent | 2ce2c1e6f9c5196c4346c3839bf594dd821c20ee (diff) | |
download | poky-0df3c481309e89b93e8a57773eb9c470b4dd13a7.tar.gz |
libgcc: use the new recipe (rather than gcc-runtime) to install libgcc_s.so* and crt*.o
Currently gcc-runtime installs the files, but actually gcc-runtime's
do_configure checks if the files are available, so before we build gcc-runtime,
we should have some recipe install the files first! -- currently
gcc-cross-intermediate actually does that(gcc-cross also installs the files,
but it installs into the gcc-build-internal* directory), but
gcc-cross-intermediate will have its own sysroot in future, after that,
gcc-runtime won't build. So let us add this new target recipe and move the
installation of the files from gcc-runtime into it.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/distro/poky.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index 1c5c72104b..31f1e41ed1 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf | |||
@@ -87,6 +87,8 @@ VIRTUAL-RUNTIME_update-alternatives ?= "update-alternatives-cworth" | |||
87 | # Others: | 87 | # Others: |
88 | PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers" | 88 | PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers" |
89 | PREFERRED_PROVIDER_linux-libc-headers-nativesdk ?= "linux-libc-headers-nativesdk" | 89 | PREFERRED_PROVIDER_linux-libc-headers-nativesdk ?= "linux-libc-headers-nativesdk" |
90 | PREFERRED_PROVIDER_libgcc ?= "libgcc" | ||
91 | PREFERRED_PROVIDER_libgcc-nativesdk ?= "libgcc-nativesdk" | ||
90 | PREFERRED_PROVIDER_dbus-glib ?= "dbus-glib" | 92 | PREFERRED_PROVIDER_dbus-glib ?= "dbus-glib" |
91 | PREFERRED_PROVIDER_dbus-glib-native ?= "dbus-glib-native" | 93 | PREFERRED_PROVIDER_dbus-glib-native ?= "dbus-glib-native" |
92 | PREFERRED_PROVIDER_gconf ?= "gconf-dbus" | 94 | PREFERRED_PROVIDER_gconf ?= "gconf-dbus" |