Browse Source

first commit

Votre Nom 4 years ago
commit
35c7edf71e
2 changed files with 24 additions and 0 deletions
  1. 8 0
      build_gekko.sh
  2. 16 0
      make_environement.sh

+ 8 - 0
build_gekko.sh

@@ -0,0 +1,8 @@
+#!/bin/bash
+cd ~
+git clone https://github.com/wareck/cgminer-gekko.git
+cd cgminer-gekko
+autoreconf -fi
+CFLAGS="-O2 -msse2" ./configure --host=i686-w64-mingw32.static --disable-shared --enable-gekko
+make
+strip cgminer.exe

+ 16 - 0
make_environement.sh

@@ -0,0 +1,16 @@
+#!/bin/bash
+sudo apt-get update
+sudo apt-get upgrade -y
+sudo apt-get install -y lzip build-essential git autoconf autopoint bison flex gperf libtool libtool-bin python ruby scons unzip intltool p7zip-full libgtk2.0-dev -y
+cd /opt
+sudo git clone https://github.com/mxe/mxe.git
+export MXE_DIR=/opt/mxe
+export MXE_TARGETS='i686-w64-mingw32.static'
+sudo make -j 4 -C $MXE_DIR MXE_TARGETS="$MXE_TARGETS" curl pthreads pdcurses ncurses libusb1
+echo 'export PATH=/opt/mxe/usr/bin:$PATH' >> ~/.profile
+echo 'export PKG_CONFIG_PATH=/opt/mxe/usr/i686-w64-mingw32.static/lib/pkgconfig/' >> ~/.profile
+export PATH=/opt/mxe/usr/bin:$PATH
+export PKG_CONFIG_PATH=/opt/mxe/usr/i686-w64-mingw32.static/lib/pkgconfig/
+cd ~
+echo "environement ok"
+