|
Edited by jacer at 2015-12-11 15:26
Can you write a guide? Compile with orangepi egl files, can you write a script? The script shows below, H3 is cortex A7 I recall. Lubuntu installs OK.
- #!/bin/bash
- ## build script for RetroArch on ARM Linux (ORANGEPI)
- ## @author neagix (odroid)
- ## @version opi by h4u
- #
-
- export CFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfloat-abi=hard'
- export CXXFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfloat-abi=hard'
- export ASFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfloat-abi=hard'
- CONFIGOPTS="--disable-oss --disable-jack --disable-pulse --enable-xvideo --enable-fbo --enable-x11 "
- CONFIGOPTS="$CONFIGOPTS --enable-opengl --enable-gles --disable-kms --disable-vg --enable-dylib --disable-ffmpeg"
- source ~/bin/armenv
- ./configure $CONFIGOPTS && \
- make -j5
Copy code
|
|