Changes between Initial Version and Version 1 of AdminWrappers


Ignore:
Timestamp:
Jun 30, 2015, 11:21:07 AM (9 years ago)
Author:
romw
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdminWrappers

    v1 v1  
     1= Building Wrapper/VboxWrapper for Release =
     2
     3== Update Version Information ==
     4
     5Update the following files:
     6 * version.h
     7 * configure.ac
     8 * win_build/<project file>
     9
     10Commit and push changes to git.
     11
     12== Create Git Tag ==
     13
     14Create a new tag for the release.
     15
     16Wrapper:
     17{{{
     18wrapper/<build number>
     19}}}
     20
     21Vboxwrapper:
     22{{{
     23vboxwrapper/<build number>
     24}}}
     25
     26Commit and push changes to git.
     27
     28== Build ==
     29
     30=== Windows ===
     31
     32Execute a Visual Studio command prompt from boinc/winbuild:
     33{{{
     34$> buildenv.cmd type release platform <x86|x64>
     35$> build <wrapper|vboxwrapper>
     36$> <codesignwrap|codesignvbox>
     37}}}
     38
     39Zip up the EXE and corresponding PDB file into a zip file and upload to the BOINC sever.
     40
     41=== Linux ===
     42
     43Execute from boinc/:
     44{{{
     45$> ./_autosetup
     46$> ./configure --disable-server --disable-client --disable-manager
     47$> make clean
     48$> make
     49$> cd samples/<wrapper|vboxwrapper>
     50$> make clean
     51$> make
     52$> strip <wrapper/vboxwrapper>
     53$> mv <wrapper/vboxwrapper> <finale executable name>
     54$> zip <finale executable name>.zip <finale executable name>
     55}}}
     56
     57Zip up the executable into a zip file and upload to the BOINC sever.
     58
     59=== Mac ===
     60
     61Follow the instructions in boinc/<wrapper/vboxwrapper>/ReadMe.txt for building the wrapper.
     62