-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
611b3c4
commit 36e2493
Showing
19 changed files
with
126 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
xcuserdata | ||
*.xcworkspacedata | ||
xcshareddata | ||
xcshareddata | ||
packages | ||
.theos |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
FINALPACKAGE = 1 | ||
|
||
ifneq (,$(filter rootless,$(MAKECMDGOALS))) | ||
THEOS_PACKAGE_SCHEME = rootless | ||
endif | ||
|
||
ifeq ($(THEOS_PACKAGE_SCHEME),rootless) | ||
ARCHS = arm64 | ||
TARGET = iphone:clang:latest:14.5 | ||
else | ||
ARCHS = armv7 armv7s arm64 | ||
TARGET = iphone:clang:latest:9.3 | ||
endif | ||
|
||
include $(THEOS)/makefiles/common.mk | ||
|
||
TOOL_NAME = oslo | ||
oslo_FILES = $(wildcard src/*.m) $(wildcard src/kat/*.c) | ||
oslo_CFLAGS = -fobjc-arc -I./src/kat -I./src | ||
oslo_CODESIGN_FLAGS = -S./other/entitlements.plist | ||
oslo_INSTALL_PATH = /usr/local/bin | ||
|
||
include $(THEOS_MAKE_PATH)/tool.mk | ||
|
||
all:: | ||
@echo "Building for $(if $(THEOS_PACKAGE_SCHEME),rootless,rootful)" | ||
|
||
rootful: | ||
@true | ||
|
||
rootless: | ||
@true | ||
|
||
.PHONY: rootful rootless |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Package: com.ethanarbuckle.oslo | ||
Name: oslo | ||
Version: 1.0.0 | ||
Architecture: iphoneos-arm | ||
Description: os_log viewer that supports streaming both real-time logs and archived logs. | ||
Maintainer: Ethan Arbuckle | ||
Author: Ethan Arbuckle | ||
Section: System | ||
Tag: role::hacker |
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
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
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.