Mercurial > trustbridge
comparison INSTALL @ 887:accda55ae053
Use make -j`nproc` everywhere instead of fixed number
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Fri, 08 Aug 2014 11:07:49 +0200 |
parents | 7ea29b5183a3 |
children | be3cb357b027 |
comparison
equal
deleted
inserted
replaced
886:197c594aad2b | 887:accda55ae053 |
---|---|
35 -release -nomake tests -nomake examples -confirm-license \ | 35 -release -nomake tests -nomake examples -confirm-license \ |
36 -static -no-cups -no-nis -no-icu -no-fontconfig -qt-freetype \ | 36 -static -no-cups -no-nis -no-icu -no-fontconfig -qt-freetype \ |
37 -no-directfb -no-opengl -no-kms -no-eglfs -no-egl -no-openssl -no-glib \ | 37 -no-directfb -no-opengl -no-kms -no-eglfs -no-egl -no-openssl -no-glib \ |
38 -system-libpng -qpa xcb -qt-xkbcommon -qt-xcb -no-nis -no-libjpeg -qt-libpng \ | 38 -system-libpng -qpa xcb -qt-xkbcommon -qt-xcb -no-nis -no-libjpeg -qt-libpng \ |
39 -qt-zlib -no-gif && \ | 39 -qt-zlib -no-gif && \ |
40 nice make -j8 && \ | 40 nice make -j`nproc` && \ |
41 make install | 41 make install |
42 | 42 |
43 cd .. && \ | 43 cd .. && \ |
44 cd qttools/src/designer/src/uitools && \ | 44 cd qttools/src/designer/src/uitools && \ |
45 qmake && \ | 45 qmake && \ |
46 nice make -j8 && \ | 46 nice make -j`nproc` && \ |
47 make install | 47 make install |
48 | 48 |
49 cd ../../../linguist && \ | 49 cd ../../../linguist && \ |
50 qmake && \ | 50 qmake && \ |
51 nice make -j8 &&\ | 51 nice make -j`nproc` &&\ |
52 make install | 52 make install |
53 | 53 |
54 curl -O https://polarssl.org/download/polarssl-1.3.8-gpl.tgz | 54 curl -O https://polarssl.org/download/polarssl-1.3.8-gpl.tgz |
55 318171db41335cacbb5b0047c94f1faf91442ab70a223b5223436703c9406ff1 polarssl-1.3.8-gpl.tgz | 55 318171db41335cacbb5b0047c94f1faf91442ab70a223b5223436703c9406ff1 polarssl-1.3.8-gpl.tgz |
56 | 56 |
97 -static -no-cups -no-nis -no-icu \ | 97 -static -no-cups -no-nis -no-icu \ |
98 -no-directfb -no-opengl -no-kms -no-eglfs -no-egl -no-openssl -no-glib \ | 98 -no-directfb -no-opengl -no-kms -no-eglfs -no-egl -no-openssl -no-glib \ |
99 -system-libpng -qpa xcb -qt-xcb -no-nis -no-libjpeg -no-gif -qt-zlib \ | 99 -system-libpng -qpa xcb -qt-xcb -no-nis -no-libjpeg -no-gif -qt-zlib \ |
100 -no-fontconfig -qt-freetype -qt-libpng -qt-xkbcommon \ | 100 -no-fontconfig -qt-freetype -qt-libpng -qt-xkbcommon \ |
101 && \ | 101 && \ |
102 nice make -j8 && \ | 102 nice make -j`nproc` && \ |
103 make install | 103 make install |
104 | 104 |
105 Switch back to the polarssl directory | 105 Switch back to the polarssl directory |
106 cd ../../../polarssl-1.3.8/ | 106 cd ../../../polarssl-1.3.8/ |
107 mkdir build-i386 | 107 mkdir build-i386 |
108 cd build-i386 | 108 cd build-i386 |
109 cmake .. -DCMAKE_C_FLAGS="-fpic -m32" -DCMAKE_INSTALL_PREFIX=$YOURPREFIX/i386 \ | 109 cmake .. -DCMAKE_C_FLAGS="-fpic -m32" -DCMAKE_INSTALL_PREFIX=$YOURPREFIX/i386 \ |
110 -DCMAKE_VERBOSE_MAKEFILE=True \ | 110 -DCMAKE_VERBOSE_MAKEFILE=True \ |
111 -DENABLE_TESTING=FALSE -DENABLE_PROGRAMS=FALSE && \ | 111 -DENABLE_TESTING=FALSE -DENABLE_PROGRAMS=FALSE && \ |
112 nice make -j8 && \ | 112 nice make -j`nproc` && \ |
113 make install | 113 make install |
114 | 114 |
115 Now for Trustbridge itself | 115 Now for Trustbridge itself |
116 cd ../../trustbridge | 116 cd ../../trustbridge |
117 mkdir build-i386 | 117 mkdir build-i386 |