Changes between Version 18 and Version 19 of BuildSystem
- Timestamp:
- Feb 8, 2014, 9:03:10 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildSystem
v18 v19 31 31 }}} 32 32 33 * This has created the 'Makefile'. Run itusing33 * This has created the 'Makefile'. Run compilation using 34 34 35 35 {{{ 36 36 make 37 37 }}} 38 39 Note that none of the above except the installation of missing packages should be run as root. 38 40 39 41 == Use cases == … … 92 94 }}} 93 95 94 == Problems during compilation phase==96 == Problems during compilation == 95 97 96 98 Once you run `make`, a few problems may occur. … … 104 106 105 107 Solution: Edit "generate_svn_version.sh" to put quotes around an argument (see https://boinc.berkeley.edu/trac/ticket/1253) 108 109 == Installation == 110 111 (Apparently 'make install' is not the correct way to install. What _is_ the correct way?) 112 113 Once compilation succeeded, run: 114 115 {{{ 116 make install 117 }}} 118 119 == Problems during installation == 120 121 Once you run `make install`, a few problems may occur. 122 123 Make breaks off with: 124 125 {{{ 126 /usr/bin/install -c -d /etc/init.d 127 /usr/bin/install -c -b ./boinc-client /etc/init.d/boinc-client 128 /usr/bin/install: cannot create regular file `/etc/init.d/boinc-client': Permission denied 129 }}} 130 131 This happens if you don't want to 'make install' as root. Edit {{{client/scripts/Makefile}}} and zero out the 'install-exec-hook' make target (see https://boinc.berkeley.edu/trac/ticket/1255) 106 132 107 133 == Source layout ==