Changes between Version 51 and Version 52 of SettingUpBuildslave


Ignore:
Timestamp:
09/17/16 11:57:32 (8 years ago)
Author:
plaisthos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SettingUpBuildslave

    v51 v52  
    171171
    172172If you're unable to run these commands manually then the buildslave won't be able to do it either.
     173
     174== Additional Enviroment variables ==
     175Add this to buildbot.tac, a bit hackish but works fine:
     176
     177{{{
     178for e in  ['LZO_CFLAGS=-I/usr/local/include',
     179           'LZO_LIBS=-llzo2 -L/usr/local/lib',
     180           'MBEDTLS_CFLAGS=-I/usr/local/Cellar/mbedtls/2.3.0_1/include',
     181           'MBEDTLS_LIBS=-L/usr/local/Cellar/mbedtls/2.3.0_1/lib/ -lmbedtls -lmbedx509 -lmbedcrypto',
     182           'OPENSSL_CFLAGS=-I/usr/local/Cellar/openssl/1.0.2h_1/include/',
     183           'OPENSSL_LIBS=-L/usr/local/Cellar/openssl/1.0.2h_1/lib/ -lcrypto -lssl']:
     184           var, value = e.split('=',1)
     185           os.environ[var]=value
     186
     187}}}