1SubDir HAIKU_TOP src system libroot posix string arch arm64 ; 2 3# Optimizations create infinite recursion otherwise. 4SubDirCcFlags -fno-builtin ; 5 6local architectureObject ; 7for architectureObject in [ MultiArchSubDirSetup arm64 ] { 8 on $(architectureObject) { 9 local architecture = $(TARGET_PACKAGING_ARCH) ; 10 11 UsePrivateSystemHeaders ; 12 13 SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; 14 15 MergeObject <$(architecture)>posix_string_arch_$(TARGET_ARCH).o : 16 arch_string.S 17 memcpy.c 18 memset.c 19 ; 20 } 21} 22