xref: /haiku/src/system/libroot/posix/string/arch/x86/Jamfile (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1SubDir HAIKU_TOP src system libroot posix string arch x86 ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup x86 x86_gcc2 ] {
5	on $(architectureObject) {
6		local architecture = $(TARGET_PACKAGING_ARCH) ;
7
8		UsePrivateSystemHeaders ;
9
10		SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
11
12		MergeObject <$(architecture)>posix_string_arch_$(TARGET_ARCH).o :
13			[ MultiArchIfPrimary memcpy.c memset.c :
14				arch_string.S : x86_64 ]
15			;
16
17	}
18}
19