summaryrefslogtreecommitdiff
path: root/package/glibc/Makefile
AgeCommit message (Collapse)Author
2023-08-20glibc: fix header installWaldemar Brodkorb
2023-08-04glibc: libcrypt is removed from C libraryWaldemar Brodkorb
2022-02-08riscv: fix glibc bootupWaldemar Brodkorb
2022-01-15glibc: fix build on static linkingWaldemar Brodkorb
2021-11-14glibc: ld.so was renamedWaldemar Brodkorb
2021-11-01mk: Introduce KERNEL_MAKE variablePhil Sutter
This combines the typical kernel make call idiom into a single variable reference. A side-effect is that parallel make is enabled (via added '-j' flag) in many cases, but that shouldn't cause harm. Signed-off-by: Phil Sutter <phil@nwl.cc>
2021-09-16glibc: update to 2.34Waldemar Brodkorb
2018-09-23glibc: fix dev package for riscvWaldemar Brodkorb
2018-04-28riscv: add special case for ld.soWaldemar Brodkorb
2018-03-08fix path to new include fileWaldemar Brodkorb
2018-01-31gcc/binutils: update to latest releases, improve riscv supportWaldemar Brodkorb
2018-01-06glibc: fix glibc-dev packageWaldemar Brodkorb
2017-12-15riscv: use upstream kernelWaldemar Brodkorb
2017-09-17remove -fhonour-copts usageWaldemar Brodkorb
This reuires a external gcc patch, which I no longer add to newer gcc. A lot of packages already need to disable the usage of -fhonour-copts, because it doesn't work without patching. May be we need something like Buildroot is using, a gcc wrapper to see poisened include or library paths while cross-compiling.
2017-08-01glibc: add missing libanl, reported by DiezWaldemar Brodkorb
2016-11-27add three library methods, static, shared or bothWaldemar Brodkorb
Rename the static symbol and add the choice to a more visible place for users.
2016-10-03remove librt/libpthread packages, not required anymoreWaldemar Brodkorb
Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
2016-09-09fix microblaze development taskWaldemar Brodkorb
2015-08-03rework kernel module infrastructureWaldemar Brodkorb
Instead of maintaining mk/modules.mk which defines compilations of related kernel modules to pack together into a single package, follow an automatic approach: For every kernel module found in the modules installation directory, create a single package. There are a few caveats to cover: === Module Loading Order === Upon bootup, module loading is ordered based on the number-prefixed files in /etc/modules.d/. The correct number was previously managed in mk/modules.mk on a per-collection basis. The new approach is to have levels which modules are to be assigned to. Level 0 contains modules with no dependencies at all. Level 1 contains modules which have only level 0 dependencies, and so on. This information is determined at compile-time by make-module-ipkgs.sh. === Module Installation to Target RootFS === Since module packages are created automatically from the modules the script finds, ADK build system has no knowledge about the connection between what the user has selected in menuconfig and the actual module packages. Therefore the earlier approach to install selected packages into rootfs does not hold anymore. Instead, use wildcards to find all packages in firmware directory prefixed by 'kmod-' and install them all (hopefully doing the right thing). === Kernel Version === KERNEL_VERSION now contains KERNEL_RELEASE already By creating a localversion file, make KERNEL_RELEASE part of the kernel's version number (so KERNEL_VERSION is correct in most situations) Signed-off-by: Phil Sutter <phil@nwl.cc>
2015-03-03convert to upper case symbols, remove lower case ADK_big/ADK_littleWaldemar Brodkorb
2014-06-28enable shared libgcc for uClibc/glibcWaldemar Brodkorb
unfortunately uClibc/glibc uses dlopen to access exception handling code from libgcc_s.so.1. Pure static build is only provided by musl.
2014-06-21s/TOPDIR/ADK_TOPDIR/Waldemar Brodkorb
to avoid namespace collisions in some packages, rename TOPDIR. Sorry you need to make cleandir && make prereq && make
2014-06-17add meta-data fileWaldemar Brodkorb
2014-06-16add gconv subpackage, useful for xbmcWaldemar Brodkorb
2014-06-12fix linux header installation on DarwinWaldemar Brodkorb
2014-06-08use ADK_TARGET_KARCH for kernel stuff, fix ppc buildWaldemar Brodkorb
2014-06-07avoid grep error messageWaldemar Brodkorb
2014-06-05fix missing kernel-version in libc-dev packages, add PKG_OPTS nostaging for ↵Waldemar Brodkorb
libc packages, to avoid cpio errors
2014-06-03fix more users ofWaldemar Brodkorb
2014-06-02refactor CPU_ARCH/ARCH variablesWaldemar Brodkorb
After Joerg asked me about the difference between ADK_TARGET_ARCH and ADK_TARGET_CPU_ARCH I recognized many duplication of variables for this information. These patch fixes this up. Use make cleandir && make menuconfig && make
2014-05-31rework static linking support, works with musl/glibc, fails to boot with ↵Waldemar Brodkorb
uclibc (qemu-x86)
2014-05-29resolve merge conflictWaldemar Brodkorb
2014-05-24fix build with ssp enabledWaldemar Brodkorb
2014-03-17disable libnss_compat, not usedWaldemar Brodkorb
2014-03-17fix networking on qemu-system-sparc64Waldemar Brodkorb
- use virtio drivers for sparc64 by default, builtin ne2k-pci emulation does not work - fix glibc packaging, revert x32 change, needs a better fix in sysroot
2014-03-17fixups for x86_64 x32 toolchain, x86_64 32 still problematicWaldemar Brodkorb
- add a musl patch to recognize x86_64-foo-muslx32 - rework multilib configuration - remove explicit sjlj gcc configure, as suggested by the gcc docs - fix strace for x32
2014-01-06add full perl, first half of supported archsWaldemar Brodkorb
2013-11-10fix substitutionWaldemar Brodkorb
2013-11-10add linker scriptsWaldemar Brodkorb
2013-10-24get rid of unsupported locale supportWaldemar Brodkorb
2013-10-22fix libmix packages, while checking all packages make some style cleanupWaldemar Brodkorb
2013-10-21automatically create development subpackages, without user interaction, ↵Waldemar Brodkorb
depend on gcc for the target, simplifies a lot of library packages
2013-10-14remove Makefile.multilib referenceWaldemar Brodkorb
2013-10-11add latest version of firefox, update dependencies and fix nss package to ↵Waldemar Brodkorb
include all necessary libraries for https support, tested only in qemu-i686 glibc for now
2013-08-12update glibc to latest upstreamWaldemar Brodkorb
2013-07-29add tzdata dependencyWaldemar Brodkorb
2013-07-10update kernel 3.4.x, fix netfilter nat modulesWaldemar Brodkorb
2013-01-31create directoryWaldemar Brodkorb
2012-10-08finetune multilib support a lot, cleanup eglibc/glibc Makefiles while thereWaldemar Brodkorb
2012-10-05make libgcc static for busybox, make librt separate package, remove ↵Waldemar Brodkorb
dependency to libtirpc, disable inetd, add preliminary multilib support (not working right now),enable 32/64 bit kernel support for x86_64