mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-11-04 01:46:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			934 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			934 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM steeve/cross-compiler:base
 | 
						|
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
 | 
						|
 | 
						|
RUN apt-get update && apt-get -y --force-yes install \
 | 
						|
                        bash \
 | 
						|
                        curl \
 | 
						|
                        pkg-config \
 | 
						|
                        build-essential \
 | 
						|
                        file \
 | 
						|
                        tar xz-utils bzip2 gzip sed
 | 
						|
 | 
						|
ENV CROSS_TRIPLE arm-linux-androideabi
 | 
						|
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
 | 
						|
ENV PATH ${PATH}:${CROSS_ROOT}/bin
 | 
						|
ENV LD_LIBRARY_PATH ${CROSS_ROOT}/lib:${LD_LIBRARY_PATH}
 | 
						|
 | 
						|
RUN mkdir -p /build && \
 | 
						|
    cd /build && \
 | 
						|
    curl -L http://dl.google.com/android/ndk/android-ndk32-r10b-linux-x86_64.tar.bz2 | tar xvj && \
 | 
						|
    cd /build/android-ndk-r10b && \
 | 
						|
    /bin/bash ./build/tools/make-standalone-toolchain.sh --platform=android-14 --install-dir=${CROSS_ROOT} && \
 | 
						|
    cd / && \
 | 
						|
    rm -rf /build
 | 
						|
 | 
						|
RUN cd ${CROSS_ROOT}/bin && \
 | 
						|
    ln -s ${CROSS_TRIPLE}-gcc ${CROSS_TRIPLE}-cc
 |