xref: /haiku/src/system/libroot/posix/string/arch/arm64/Jamfile (revision 9e25244c5e9051f6cd333820d6332397361abd6c)
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