Created
July 25, 2018 22:37
-
-
Save mihailescu2m/722e978476182e378bb0254066a90b87 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** efl | |
export CFLAGS="-O3" | |
export CFLAGS="$CFLAGS -ffast-math" | |
export CFLAGS="$CFLAGS -fexpensive-optimizations" | |
export CFLAGS="$CFLAGS -frename-registers" | |
export CFLAGS="$CFLAGS -ftree-vectorize" | |
export CFLAGS="$CFLAGS -march=armv7-a" | |
export CFLAGS="$CFLAGS -mfpu=neon-vfpv4" | |
export CFLAGS="$CFLAGS -mfloat-abi=hard" | |
export CFLAGS="$CFLAGS -fvisibility=hidden" | |
export CFLAGS="$CFLAGS -g3" | |
export CFLAGS="$CFLAGS -pipe" | |
export CFLAGS="$CFLAGS -Wno-unused-but-set-parameter" | |
export CFLAGS="$CFLAGS -Wno-clobbered" | |
export CFLAGS="$CFLAGS -W" | |
export CFLAGS="$CFLAGS -Wall" | |
export CFLAGS="$CFLAGS -Wextra" | |
./autogen.sh --prefix=/usr --with-tests=regular --disable-cxx-bindings --disable-tslib --with-glib=no --enable-ibus -enable-elput --enable-ecore-buffer --enable-xinput22 --enable-harfbuzz --enable-systemd --enable-fb --enable-drm --enable-wayland --enable-egl --with-opengl=es --enable-gl-drm | |
make -j4 | |
sudo make install | |
sudo ldconfig | |
*** enlightenment | |
meson build -Dwayland=true --prefix=/usr | |
cd build | |
ninja -j4 | |
sudo ninja install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment