# /Libsystem.xcodeproj/project.xcworkspace/
/Libsystem.xcodeproj/project.xcworkspace/xcuserdata
+project.xcworkspace
DYLIB_INSTALL_NAME_EXECUTABLE_NAME = $(EXECUTABLE_PREFIX)$(PRODUCT_NAME)$(EXECUTABLE_SUFFIX)
DYLIB_INSTALL_NAME_EXECUTABLE_PATH = $(DYLIB_INSTALL_NAME_EXECUTABLE_NAME)
LD_DYLIB_INSTALL_NAME = $(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(DYLIB_INSTALL_NAME_EXECUTABLE_PATH)
+
+IS_ZIPPERED = YES
baseConfigurationReference = C9B56C55153751A600C153A8 /* Libsystem.xcconfig */;
buildSettings = {
PRODUCT_NAME = "$(TARGET_NAME).B";
- "PRODUCT_NAME[sdk=iphonesimulator*]" = "$(TARGET_NAME)";
SDKROOT = macosx.internal;
};
name = Release;
extern char *_dirhelper(int, char *, size_t);
#endif
-#if TARGET_OS_EMBEDDED && !TARGET_OS_WATCH && !__LP64__
-extern void _vminterpose_init(void);
-#endif
-
// advance decls for below;
void libSystem_atfork_prepare(void);
void libSystem_atfork_parent(void);
_libsecinit_initializer();
#endif
-#if TARGET_OS_EMBEDDED
+#if defined(HAVE_SYSTEM_CONTAINERMANAGER)
_container_init(apple);
#endif
__stack_logging_early_finished();
-#if TARGET_OS_EMBEDDED && TARGET_OS_IOS && !__LP64__
- _vminterpose_init();
-#endif
-
#if !TARGET_OS_IPHONE
/* <rdar://problem/22139800> - Preserve the old behavior of apple[] for
* programs that haven't linked against newer SDK.
keymgr
quarantine
system_containermanager
+system_network
system_networkextension
system_secinit
system_symptoms
-vminterpose
system_sim_kernel system_kernel
system_m
system_malloc
-system_network
system_notify
system_sim_platform system_platform
system_sim_pthread system_pthread
BSD_LIBS="c info m pthread dbm poll dl rpcsvc proc"
+if [[ "${PLATFORM_NAME}" =~ macosx ]]; then
+ BSD_LIBS="${BSD_LIBS} gcc_s.1"
+fi
+
mkdir -p "${DSTROOT}/usr/lib" || exit 1
if [ "${ACTION}" != "installhdrs" ]; then
suffix="_${variant}"
fi
- if [[ "${PLATFORM_NAME}" =~ simulator ]] ; then
- ln -sf "libSystem${suffix}.dylib" "${DSTROOT}/usr/lib/libSystem.B${suffix}.dylib" || exit 1
- else
- ln -sf "libSystem.B${suffix}.dylib" "${DSTROOT}/usr/lib/libSystem${suffix}.dylib" || exit 1
- fi
+ ln -sf "libSystem.B${suffix}.dylib" "${DSTROOT}/usr/lib/libSystem${suffix}.dylib" || exit 1
for i in ${BSD_LIBS}; do
ln -sf "libSystem.dylib" "${DSTROOT}/usr/lib/lib${i}.dylib" || exit 1
suffix="_${variant}"
fi
- if [[ "${PLATFORM_NAME}" =~ simulator ]] ; then
- ln -sf "../../../../usr/lib/libSystem${suffix}.dylib" "${DSTROOT}/${FPATH}/System${suffix}" || exit 1
- else
- ln -sf "../../../../usr/lib/libSystem.B${suffix}.dylib" "${DSTROOT}/${FPATH}/System${suffix}" || exit 1
- fi
+ ln -sf "../../../../usr/lib/libSystem.B${suffix}.dylib" "${DSTROOT}/${FPATH}/System${suffix}" || exit 1
done
fi