Skip to content

Instantly share code, notes, and snippets.

Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "2.8.0"
s.summary = "Apache Cordova is a platform for building native mobile applications using HTML, CSS and JavaScript."
s.homepage = "http://cordova.apache.org/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap and Cordova Contributors"
s.license = 'Apache License, Version 2.0'
s.source = { :git => "https://github.com/apache/cordova-ios.git", :tag => "2.8.0" }
@stepahn
stepahn / time.py
Created January 29, 2013 16:12 — forked from timfel/time.py
import time
import os
from pypy.rpython.tool import rffi_platform
from pypy.rpython.lltypesystem import rffi, lltype
from pypy.translator.tool.cbuild import ExternalCompilationInfo
from rupypy.module import ClassDef
from rupypy.objects.objectobject import W_Object
from rupypy.objects.exceptionobject import W_ArgumentError
@stepahn
stepahn / gist:3620893
Created September 4, 2012 12:50 — forked from anonymous/gist:3620872
pypy cross translation

Cross-translating for ARM

Here we describe the required setup and necessary steps to translate an interpreter with the RPython translator to target ARM using a cross compilation toolchain.

While it is possible to translate an RPython program for ARM directly on an ARM device following the normal translation steps it is not really feasible on most ARM machines. The alternative is to cross-translate using a cross-compilation toolchain.