Skip to content
Snippets Groups Projects
  1. Aug 12, 2016
  2. Aug 11, 2016
  3. Aug 10, 2016
  4. Aug 01, 2016
  5. Jul 30, 2016
  6. May 30, 2016
  7. May 22, 2016
    • nicolas's avatar
      Add scons build to appveyor builds · 335c8eee
      nicolas authored
      This will guarantee we can build hammer with default arguments
      335c8eee
    • nicolas's avatar
      Note for later about windows port · 39e101df
      nicolas authored
      39e101df
    • nicolas's avatar
      Replace all double quotes with single quotes · 88420038
      nicolas authored
      To homogenize the file and allow keys/strings to be searched easily.
      88420038
    • nicolas's avatar
      Port scons build files for Windows users · 69d3e702
      nicolas authored
      We disable:
      - the tests (which require glib) although they can be
        reactivated with the `--tests` command line flag
      - shared library (lack of export symbol declarations
        means that although it can be built, no symbol is
        exported and therefore it can't be used)
      
      The `install` target installs the library and headers
      under the `build` folder, because it's a traditional practice
      to move libraries to a central location on Windows, unless
      you are using cygwin. In which case pass `prefix` to the
      command line.
      
      We adapt tools\windows\build_examples.bat to take the library
      that is built using scons or using tools\windows\build.bat
      69d3e702
    • nicolas's avatar
      Move sections around to allow porting to windows · f31e3ba4
      nicolas authored
      We will need to use the environment's CC variable to make decisions
      that apply to windows compiling and linking. Therefore we move some
      existing sections below the set up of env["CC"] and env["CXX"]
      f31e3ba4
  8. Feb 24, 2016
  9. Jan 31, 2016
  10. Dec 20, 2015
  11. Dec 13, 2015
  12. Dec 08, 2015
  13. Dec 07, 2015
  14. Dec 06, 2015
  15. Dec 04, 2015
    • Sven M. Hallberg's avatar
    • Alex Willmer's avatar
      Added Python versions of base64 examples · c6280a98
      Alex Willmer authored
      These are transliterations of the existing C files.
      They're not particularly Pythonic or performant, but they're a start.
      
      Example of usage
      
      ```
      $ echo '  YW55IGNhcm5hbCBwbGVhcw==' | PYTHONPATH=../build/opt/src/bindings/python/ python base64.py
      inputsize=27
      input=  YW55IGNhcm5hbCBwbGVhcw==
      ((((89L, 87L, 53L, 53L), (73L, 71L, 78L, 104L), (99L, 109L, 53L, 104L), (98L, 67L, 66L, 119L), (98L, 71L, 86L, 104L)), (99L, 'w', '=', '=')),)
      $ echo '  YW55IGNhcm5hbCBwbGVhcw==' | PYTHONPATH=../build/opt/src/bindings/python/ python base64_sem1.py
      inputsize=27
      input=  YW55IGNhcm5hbCBwbGVhcw==
      (97L, 110L, 121L, 32L, 99L, 97L, 114L, 110L, 97L, 108L, 32L, 112L, 108L, 101L, 97L, 115L)
      $ echo '  YW55IGNhcm5hbCBwbGVhcw==' | PYTHONPATH=../build/opt/src/bindings/python/ python base64_sem2.py
      inputsize=27
      input=  YW55IGNhcm5hbCBwbGVhcw==
      (97L, 110L, 121L, 32L, 99L, 97L, 114L, 110L, 97L, 108L, 32L, 112L, 108L, 101L, 97L, 115L)
      ```
      c6280a98
  16. Dec 02, 2015
  17. Dec 01, 2015
Loading