Skip to content

Instantly share code, notes, and snippets.

View i36lib's full-sized avatar
:octocat:
V2lzaCBZb3Ugd2VyZSBIZXJlLg==

Fury i36lib

:octocat:
V2lzaCBZb3Ugd2VyZSBIZXJlLg==
  • Mars
View GitHub Profile
@i36lib
i36lib / BootstrapAgent.java
Created March 26, 2024 06:56 — forked from raphw/BootstrapAgent.java
An example agent that intercepts a method of the bootstrap class loader.
package net.bytebuddy;
import net.bytebuddy.agent.ByteBuddyAgent;
import net.bytebuddy.agent.builder.AgentBuilder;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.dynamic.ClassFileLocator;
import net.bytebuddy.dynamic.DynamicType;
import net.bytebuddy.dynamic.loading.ClassInjector;
import net.bytebuddy.implementation.MethodDelegation;
import net.bytebuddy.implementation.bind.annotation.SuperCall;
@i36lib
i36lib / boost.sh
Created October 28, 2015 03:58 — forked from faithfracture/boost.sh
Boost build script for iOS (armv7, armv7s, arm64), iOS Simulator (i386, x86_64), and OSX (i386, x86_64)
#===============================================================================
# Filename: boost.sh
# Author: Pete Goodliffe
# Copyright: (c) Copyright 2009 Pete Goodliffe
# Licence: Please feel free to use this, with attribution
# Modified version
#===============================================================================
#
# Builds a Boost framework for iOS, iOS Simulator, and OSX.
# Creates a set of universal libraries that can be used on an iOS and in the
@i36lib
i36lib / boost.sh
Created October 28, 2015 03:57 — forked from rsobik/boost.sh
Build Boost 1.55.0 for iOS 7 and OS X including 64 Bit
#===============================================================================
# Filename: boost.sh
# Author: Pete Goodliffe
# Copyright: (c) Copyright 2009 Pete Goodliffe
# Licence: Please feel free to use this, with attribution
# Modified version
#===============================================================================
#
# Builds a Boost framework for the iPhone.
# Creates a set of universal libraries that can be used on an iPhone and in the
@i36lib
i36lib / openssl-build.sh
Last active October 28, 2015 03:57 — forked from Norod/openssl-build.sh
A shell script to build openssl for iOS and Mac. >>>>> It currently builds: Mac (i386, x86_64) >>>>> iOS (armv7, arm64) >>>>> iOS Simulator (i386, x86_64) >>>>> Updated to work with Xcode 7 and produce bitcode enabled binaries >>>>> Minimum deployment target can be easily configured
#!/bin/bash
# This script builds the iOS and Mac openSSL libraries with Bitcode enabled
# Download openssl http://www.openssl.org/source/ and place the tarball next to this script
# Credits:
# https://github.com/st3fan/ios-openssl
# https://github.com/x2on/OpenSSL-for-iPhone/blob/master/build-libssl.sh
# Peter Steinberger, PSPDFKit GmbH, @steipete.
# Doron Adler, GlideTalk, @Norod78
@i36lib
i36lib / README
Last active October 28, 2015 04:03
lz4 build script for iOS (armv7, armv7s, arm64), iOS Simulator (i386, x86_64)
A shell script to build lz4 for iOS:
==> Default lz4 version: lz4-r112
==> Minimum deployment target start with 7.0
==> Works with Xcode 7 and produce bitcode enabled binaries
==> Currently builds: iOS (armv7, armv7s,arm64), iOS Simulator (i386, x86_64)