Skip to content

Instantly share code, notes, and snippets.

View Wizermil's full-sized avatar

Mathieu Garaud Wizermil

View GitHub Profile
@Wizermil
Wizermil / build_curl_ios.sh
Created April 9, 2019 16:38
Script to compile curl static library for iOS
#!/bin/bash
CURL_VERSION="7.64.1"
ARCHS=("i386" "armv7" "armv7s" "arm64" "arm64e" "x86_64")
SDK_VERSION="12.2"
ROOT_DIR=$(pwd)
WORKER=$(getconf _NPROCESSORS_ONLN)
BUILD_DIR="build/ios/curl"
LOG_FILE="$ROOT_DIR/$BUILD_DIR/build.log"
@Wizermil
Wizermil / build_jemalloc_ios.sh
Last active February 17, 2023 08:19
Script to compile jemalloc static library for iOS
#!/bin/bash
JEMALLOC_VERSION="5.2.0"
ARCHS=("i386" "armv7" "armv7s" "arm64" "arm64e" "x86_64")
SDK_VERSION="12.2"
ROOT_DIR=$(pwd)
WORKER=$(getconf _NPROCESSORS_ONLN)
BUILD_DIR="build/ios/jemalloc"
LOG_FILE="$ROOT_DIR/$BUILD_DIR/build.log"