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