xref: /haiku/src/system/libroot/posix/string/arch/x86_64/Jamfile (revision a5c0d1a80e18f50987966fda2005210092d7671b)
1SubDir HAIKU_TOP src system libroot posix string arch x86_64 ;
2
3# Optimizations create infinite recursion otherwise.
4SubDirC++Flags -fno-builtin ;
5
6local architectureObject ;
7for architectureObject in [ MultiArchSubDirSetup x86_64 ] {
8	on $(architectureObject) {
9		local architecture = $(TARGET_PACKAGING_ARCH) ;
10
11		UsePrivateSystemHeaders ;
12
13		MergeObject <$(architecture)>posix_string_arch_$(TARGET_ARCH).o :
14			arch_string.cpp
15			;
16	}
17}
18