This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Created 18H12 | |
# | |
if [ $# -ne 1 ]; then | |
echo "`basename $0` installer_app" | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Retrial VMWare Fusion another 30 days | |
# | |
set -eu | |
sudo rm -rf /Library/Preferences/VMware\ Fusion/license-fusion-* | |
echo "Done! please restart VMware Fusion.app." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Created 18H17 | |
# | |
# Generate the XML-format dependencies of kernel extension | |
# which used in Info.plist of the kext | |
# | |
if [ $# -lt 1 ]; then | |
echo "kextdeps.sh kext ..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Created 18H17 | |
# | |
if [ $# -ne 1 ]; then | |
echo "`basename $0` installer_app" | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Created 18H21 | |
# | |
if [ $# -ne 1 ]; then | |
cat << EOL | |
Usage: $(basename $0) symbol ... | |
EOL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created 18H18 lynnl | |
*/ | |
#include <mach/mach_types.h> | |
#include <sys/systm.h> | |
#include <libkern/OSAtomic.h> | |
#define INAME "kext-memleak" | |
#define LOG(fmt, ...) printf(INAME ": " fmt "\n", ##__VA_ARGS__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Created 18H28 | |
# | |
if [ $# -ne 1 ]; then | |
echo "`basename $0` installer_app" | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Showing All Messages | |
Build target kext-null of project kext-null with configuration Release | |
ProcessInfoPlistFile DerivedData/kext-null/Build/Products/Release/kext-null.kext/Contents/Info.plist kext-null/Info.plist | |
cd /Users/lynnl/Zen/kext-null | |
builtin-infoPlistUtility /Users/lynnl/Zen/kext-null/kext-null/Info.plist -expandbuildsettings -platform macosx -o /Users/lynnl/Zen/kext-null/DerivedData/kext-null/Build/Products/Release/kext-null.kext/Contents/Info.plist | |
CompileC DerivedData/kext-null/Build/Intermediates.noindex/kext-null.build/Release/kext-null.build/Objects-normal/x86_64/kext_null.o kext-null/kext_null.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(xcrun -find clang) -v | |
Apple LLVM version 9.1.0 (clang-902.0.39.2) | |
Target: x86_64-apple-darwin17.7.0 | |
Thread model: posix | |
InstalledDir: /Library/Developer/CommandLineTools/usr/bin | |
$(xcrun -find clang) -x c /dev/null -dM -E | |
#define OBJC_NEW_PROPERTIES 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Showing All Messages | |
Build target EmptyQuickLook of project EmptyQuickLook with configuration Debug | |
Write auxiliary files | |
write-file /Users/lynnl/Mars/EmptyQuickLook/DerivedData/EmptyQuickLook/Build/Intermediates.noindex/EmptyQuickLook.build/Debug/EmptyQuickLook.build/EmptyQuickLook-all-non-framework-target-headers.hmap | |
write-file /Users/lynnl/Mars/EmptyQuickLook/DerivedData/EmptyQuickLook/Build/Intermediates.noindex/EmptyQuickLook.build/Debug/EmptyQuickLook.build/EmptyQuickLook-project-headers.hmap | |
write-file /Users/lynnl/Mars/EmptyQuickLook/DerivedData/EmptyQuickLook/Build/Intermediates.noindex/EmptyQuickLook.build/Debug/EmptyQuickLook.build/EmptyQuickLook-all-target-headers.hmap |
OlderNewer