blob: c70b5092332b796aa031864b52618239c24793cd [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001require pseudo.inc
2
Andrew Geissler028142b2023-05-05 11:29:21 -05003SRC_URI = "git://git.yoctoproject.org/pseudo;branch=master;protocol=https \
Patrick Williamsc0f7c042017-02-23 20:41:17 -06004 file://0001-configure-Prune-PIE-flags.patch \
Andrew Geissler5082cc72023-09-11 08:41:39 -04005 file://glibc238.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -06006 file://fallback-passwd \
7 file://fallback-group \
Brad Bishop316dfdd2018-06-25 12:45:53 -04008 "
Andrew Geisslerd159c7f2021-09-02 21:05:58 -05009SRC_URI:append:class-native = " \
10 http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
11 file://older-glibc-symbols.patch"
12SRC_URI:append:class-nativesdk = " \
13 http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
14 file://older-glibc-symbols.patch"
15SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Patrick Williams44b3caf2024-04-12 16:51:14 -050017SRCREV = "0d292df61aeb886ae8ca33d9edc3b6d0ff5c0f0f"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018S = "${WORKDIR}/git"
Andrew Geissler5082cc72023-09-11 08:41:39 -040019PV = "1.9.0+git"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
Andrew Geissler517393d2023-01-13 08:55:19 -060021# largefile and 64bit time_t support adds these macros via compiler flags globally
22# remove them for pseudo since pseudo intercepts some of the functions which will be
23# aliased due to this e.g. open/open64 and it will complain about duplicate definitions
24# pseudo on 32bit systems is not much of use anyway and these features are not of much
25# use for it.
26TARGET_CC_ARCH:remove = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64"
27
Brad Bishop79641f22019-09-10 07:20:22 -040028# error: use of undeclared identifier '_STAT_VER'
Patrick Williams213cb262021-08-07 19:21:33 -050029COMPATIBLE_HOST:libc-musl = 'null'