summaryrefslogtreecommitdiff
path: root/meta/recipes-devtools
AgeCommit message (Collapse)AuthorFiles
2010-10-07gcc: Fix c++ search path for target system compiler making everything consistentRichard Purdie3
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-10-01python-pygtk: Use correct paths at build timeJoshua Lock1
Fix the paths in configure.ac to use the target libraries and generators for building pygtk. Fix taken from OE. Thanks to Gary Thomas for providing a first stab at this. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2010-10-01Python gst package needs pygtk at runtimeGary Thomas1
Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Joshua Lock <josh@linux.intel.com>
2010-10-01binutils: Update the poison patchMark Hatle2
[BUGID #374] Previously the poison directories patch was present, but not enabled due to the lack of the configure option being set, and also the fact configure itself was not being patched. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-10-01gcc: Update poisoned include path checkingMark Hatle5
[BUGID #374] The poison directory patch that was included with gcc-4.5.0 was not previously enabled due to the lack of the configure file changes. The patch has been updated to include the configure fragment. It was also noted that this patch preformed nearly the same functions as the zecke-no-host-includes patch, but with slightly different directories. The directories scanned were added from the zecke-no-host-includes patch to the new gcc-poison-dir-extend.patch. The other difference with the zecke patch is that poisoned headers is no longer an immediate fatal error. There may be instances where someone wants to do this. Adding -Werror=poison-system-directories to the CFLAGS would restore the behavior. Also fix a small problem where --help=warnings on gcc wouldn't return the poison-system-directories as a valid option, even though it was. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-09-30Move prism-firmware, spectrum-fw, python-urlgrabber, python-iniparse and ↵Richard Purdie9
yum-metadata to meta-extras Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-30qemu: introduce vmware vga FIFO rewind patch to fix qemu hangZhai Edwin2
In some circumstance guest driver got interrupted before inserting all args for one command, so that qemu get an invalid args and hang. GL patch doesn't consume these missing args, which further cause FIFO disorder. This commit reverts wrong behavior of GL patch, and introduces a qemu upstream patch to rewind FIFO unpon detecting incomplete command. [BUGID #111] fixed by this. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-09-30gdb: add EXPAT to resolve gdbserver comm issuesSaul Wold1
[BUGID #346] Added EXPAT = "--with-expat" to allow gdb to correctly communicate with the gdbserver Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-30diffstat: Added LICENSE fieldSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-30elfutils: add zlib into DEPENDSDexuan Cui1
This patch fixes the build failure I met with. Thanks a lot to Qing He and Kevin Tian for pointing this out! Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2010-09-30gcc: fix check for target libc ssp supportKevin Tian10
gcc uses hardcoded path "${with-build-sysroot}/usr/include" to check target libc ssp support. Based on GLIBC version strings in features.h in that search path, gcc knows whether target (e)glibc implements stack protector itself. However this breaks meta-toolchain, which actually has target libc headers installed under {with-build-sysroot}/opt/... This way features.h is not found and thus gcc-crosssdk-intermediate thinks that target (e)glibc doesn't support ssp. Later when building eglibc-nativesdk, undefined reference to "__stack_chk_guard" occurs which was caused by: o eglibc do_configure found that gcc-crosssdk-intermediate supports ssp, and thus enable -fstack-protector for nscd o eglibc itself supports stack smash proctection for some architectures such as i386, x86-64, etc. It's expected to use its own method to provide stack protection, instead of relying on gcc. So eglibc rtld.os doesn't export __stack_chk_guard to other modules o then when installing nscd objects, gcc-crosssdk-intermediate sees the flag "-fstack-protector", while it thought this eglibc doesn't implement ssp itself, so gcc turns to the alternative to find a valid __stack_chk_guard exported. eglibc doesn'g export it, while gcc-crosssdk-intermediate itself disables libssp. Then the undefined reference happens. If enabling libssp for gcc-crosssdk- intermediate, it may also work-around this issue. But the ideal fix is still to replace hard coded path with the actual one where target libc gets installed. glibc-nativesdk doesn't encounter this issue because it thinks gcc doesn't support ssp, and thus doesn't enable "-fstack-protector" for nscd. Don't know the reason yet This fix [BUGID #366] Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Kevin Tian <kevin.tian@intel.com>
2010-09-30rpm_5.1.10.bb: The upstream location has changedMark Hatle1
rpm_5.1.10.bb: bump PR [BUGID #357] The upstream distribution location for the Poky 5.1.10 version of RPM has changed. Correct it to the new location. Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-30rpm_5.1.10: Disable dependency loop messageMark Hatle2
[BUGID #332] Disable the dependency loop message that looked like an error had occured. This is really a debug message. Also remove the "remove: " debug message about which side of the dep loop it is removing to resolve the circular dependency. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-09-29e2fsprogs: Don't change ownership of the patches directoryGary Thomas1
Patches can be symlinks and changing their ownership may not be possible. Therefore stop doing this. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-27QEMU: Fix the mouse shadow issue (bug 170)Yu Ke2
the root cause is that the qemu cursor array is hardcoded to 256 bytes, while the sato use cursor of the size 64*64=4096, thus lead buffer overflow and abnormal mouse. A qemu patch is introduced to dynamically allocate qemu cursor array to fix this issue. BTW, qemu upstream already redesign the cursor interface and implementation, and this issue does not occur in upstream, so no need to push this patch to upstream. and when upgrade the qemu, this patch can be safely removed. Fix [BUGID #170] Signed-off-by: Yu Ke <ke.yu@intel.com>
2010-09-27gcc: enable poison parameters detectionDongxiao Xu24
If not configured with --enable-target-optspace, gcc will report errors if there is '-Os' optimization in parameters. This fixes [BUGID #342] Also add "--enable-target-optspace" option to arm gcc configuration. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-22upgrade gcc to 4.5.0 for mips architectureDongxiao Xu6
Fix the out of memory when building webkit-gtk with gcc-4.5.0 The new feature added after 4.3.3 "http://www.pubbs.net/200909/gcc/94048-patch-add-support-for-rmipsjalr.html" will cause cc1plus eat up all the system memory when build webkit-gtk. The function mips_get_pic_call_symbol keeps on recursively calling itself. Disable this feature to walk aside the bug. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-17 gcc: upgrade gcc for powerpc to version 4.5.0Dongxiao Xu22
Fix one parameter order issue for base_contains function, which impacts glibc build under new gcc. Add new judge code to determine whether <altivec.h> is needed. This fixes the mpeg2dec build failure under new gcc. Use O2 as the optimization flag to tinylogin as it will meet segfault if compiled by gcc-4.5.0 when enable both frename-registers and Os options. Use O2 instead. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-17distro data: Update distro data tracking dataSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-10qemu: add qemu-mipsel to the list of simulatorsBruce Ashfield1
Add qemu-mipsel to the list of generated simulators. Obviously this is needed to build a MIPS little endian system. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2010-09-10gnu-config: Fix target version to contain all the substitutions and not ↵Richard Purdie1
overwrite the first half with the second set of changes Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-08gcc_4.5.0: add --enable-poison-system-directories option to crossNitin A Kamble9
recipes Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2010-09-08binutils: add binutils_poison.patchNitin A Kamble5
and also correct the license field in the recipe This fixes [BUGID #245] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2010-09-07qemu: Apply fix for armv6 locale generation using TLS registersRichard Purdie2
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-07pseudo: Honour the NO32LIBS variableRichard Purdie1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-06gcc-crosssdk-initial: Ensure native dependencies are built, these can differ ↵Richard Purdie1
accross different gcc versions causing build failures Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-03rpm: Fix autoconf/libtool usageMark Hatle2
In order to resolve a host-contamination problem, we re-work the way that autoconf and friends are invoked during the compilation of RPM. This has a side effect of fixing another bug where RPM was being renamed HOST_ARCH-HOST_OS-rpm. So we remove the "fixes" for that behavior as well. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-09-03rpm: Change the way the python version is determined so its sane and works ↵Richard Purdie1
with checksumming Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-03rpm: Raise the number of potential rescans before aborting with a dep loopMark Hatle2
Within Poky we have a large number of self-referencing packages. So we need to raise the number of rescans before triggering a dependency loop error. 100 seems like a reasonable number. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-09-02qemu: build qemu-x86-64 binary for use in locale generationJoshua Lock3
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2010-09-02package_rpm: Enable debian style tagsMark Hatle1
Enable debian style tags including suggests, enhances, recommends Note, these are not yet used by the dependency resolver. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2010-09-02Add qemu-ppc in qemu-native, required by eglibcZhai Edwin3
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-09-02tcl: fix from missing sys/fpu.h and undefined mipsCRSaul Wold2
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-02valgrind: fix perl scriptsQing He2
svn version of valgrind uses #! @PERL@ for several perl scripts. However, PERL in autoconf doesn't distinguish host perl and target perl, causing STAGING_DIR_NATIVE be written in the output scripts. This causes unrunnable scripts, and fails FILERDEPENDS mechanism (thus also do_rootfs_rpm). Uses /usr/bin/perl instead to fix it. Signed-off-by: Qing He <qing.he@intel.com>
2010-09-01packages: Separate out most of the remaining packages into recipesRichard Purdie36
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-08-31rpm: compatiblity and header fixQing He3
changes: - add headerAddOrAppendEntry in lib/rpm4compat.h for compatibility - fix rpmbag.h introduced in rpm 5.1.10 Signed-off-by: Qing He <qing.he@intel.com>
2010-08-31Add qemu-i386 in qemu-native, required by eglibcZhai Edwin4
Adding i386-linux-user in target-list is enough in theory, but our gl stuff is not friendly to linux-user code. So disable it when compiling linux-user. [BUGID #218] fixed by this. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-08-27Major layout change to the packages directoryRichard Purdie612
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>