Files
haiku-beta6/src/system/libroot/posix/string/arch/arm64/Jamfile
T
Jaroslaw Pelczar cbdb30f467 arm64: Add more random scripts to get stuff to compile
Signed-off-by: Jaroslaw Pelczar <[email protected]>
Change-Id: Ie043af5b7471f626a1ffe100848151c832dcc439
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1853
Reviewed-by: Alex von Gluck IV <[email protected]>
2020-01-25 08:50:51 +00:00

19 lines
439 B
Plaintext

SubDir HAIKU_TOP src system libroot posix string arch arm64 ;
local architectureObject ;
for architectureObject in [ MultiArchSubDirSetup arm64 ] {
on $(architectureObject) {
local architecture = $(TARGET_PACKAGING_ARCH) ;
UsePrivateSystemHeaders ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
MergeObject <$(architecture)>posix_string_arch_$(TARGET_ARCH).o :
arch_string.S
memcpy.c
memset.c
;
}
}