Skip to content
Snippets Groups Projects
  1. Oct 26, 2015
  2. Oct 21, 2015
    • Nick Zavaritsky's avatar
      gh-989: Fix 32 bit x86 builds · feff6d12
      Nick Zavaritsky authored
      If building for 32 bit x86 target pass -march=i686 option to enable
      atomic instructions.  i686 is usually the default arch but sometimes an
      older one is selected (depends on gcc compile time configuration).
      feff6d12
  3. Oct 15, 2015
  4. Oct 13, 2015
  5. Oct 12, 2015
    • Nick Zavaritsky's avatar
      Fix build (-fno-common) · dd595ff7
      Nick Zavaritsky authored
      A 'tentative definition' in C language is a global variable definition
      missing both a storage class and an initializer, ex: int foo.
      Traditionally it get's translated into a common symbol, allowing for
      multiple definitions in different translation units to coexist.
      
      Normally multiple definitions aren't allowed; unless they are common
      symbols.  In the later case a linker picks one arbitrarily.
      
      -fno-common alters tentative definitions translation, resulting in
      a more strict and conformant semantics, multiple definitions are no
      longer allowed.
      
      This change was motivated by the OSX linker not handling common symbols
      in static libraries
      (https://stackoverflow.com/questions/19398742/os-x-linker-unable-to-find-symbols-from-a-c-file-which-only-contains-variables)
      dd595ff7
  6. Oct 01, 2015
  7. Sep 30, 2015
  8. Sep 15, 2015
  9. Sep 07, 2015
  10. Sep 05, 2015
  11. Sep 04, 2015
  12. Sep 03, 2015
  13. Aug 31, 2015
    • Nick Zavaritsky's avatar
      Fix luajit build on FreeBSD · 6270678e
      Nick Zavaritsky authored
      Luajit comes with a custome buildsystem. Fixed passing custom
      CC; it bites on FreeBSD since we are currently unable to build
      with default CC (gh-786).
      6270678e
    • Nick Zavaritsky's avatar
      gh-1019: Fix FreeBSD 10 build issue with gcc4.8 · 00550414
      Nick Zavaritsky authored
      Issue was due to _Thread_local keyword used in the system
      header which gcc4.8 fails to understand in c11 mode.
      In --std=gnu99 mode it works.
      
      Updated cmake test to claim no c11 support if ctype.h fails
      to compile.
      00550414
  14. Aug 28, 2015
  15. Aug 20, 2015
    • bigbes's avatar
      Fix OOS build with 'lua_source' · d74778e2
      bigbes authored
      The origin was that 'vmdef.lua' was generated in
      '${CMAKE_BINARY_DIR}/third_party/luajit/jit/', but was searched in
      '${CMAKE_SOURCE_DIR}/...'.
      ALSO: when we start to generate *.c files from luajit's libraries we made
      statement, that we don't built with OS pre-built luajits.
      d74778e2
  16. Aug 18, 2015
  17. Aug 17, 2015
  18. Aug 14, 2015
    • Roman Tsisyk's avatar
      Fix #897: Introduce a public C API for stored functions in C and plugins · 316d4e3a
      Roman Tsisyk authored
      Introduce a layer of wrappers for a number of internal box functions,
      dealing with accss to spaces and indexes.
      
      These wrappers:
          * don't throw exceptions
          * have a common prefix box_
          * are exported in the server development headers
      
      Rewrite Lua C bindings to use the public API described above.
      Rewrite Lua FFI bindings to do the same.
      Add test.
      316d4e3a
  19. Aug 12, 2015
  20. Aug 10, 2015
  21. Aug 04, 2015
  22. Jul 06, 2015
    • Konstantin Osipov's avatar
      gh-897: stored functions in C/C++ · fccb62ce
      Konstantin Osipov authored
      Implement basic support for stored functions in C/C++.
      
      - split away struct func from struct func_def (function
      object and function definition object).
      - extend box.schema.func.create() to accept 'language' argument.
      - move module API related cmake magic to its own file
      - add test/lib to gitignore
      - update to the new test-run
      - add a test
      fccb62ce
  23. Apr 28, 2015
  24. Apr 24, 2015
  25. Apr 22, 2015
    • Roman Tsisyk's avatar
      Rename module.h to tarantool.h · b53e4674
      Roman Tsisyk authored
      b53e4674
    • Roman Tsisyk's avatar
    • Roman Tsisyk's avatar
      Define public module API for Tarantool Lua/C modules · efe97b7b
      Roman Tsisyk authored
      This patch adds `src/module.h` header file with definition of all public
      API functions suitable to use in Lua/C modules for Tarantool. This header
      is automatically generated from src/*.h by CMake (`make generate_module_api`)
      by extracting code blocks between /** \cond public */ /* \endcond public */
      Doxygen-style comments.
      
      Definitions of functions in module.h are frozen and must not be changed by
      future commits/releases. A new test case `app/module_api` is added to check
      compilation, linkage and loading of Lua modules and functionality of
      provided API functions.
      
      Other changes:
      
       * Convert mysql and pg to use module.h and prepare to convert to .c
       * Fix includes in say.h, coeio.h
       * Rename luaL_pushnumber64 to luaL_pushuint64 and
                luaL_pushinumber64 to luaL_pushint64
       * Add LUA_API macros to public luaL_* functions (actually adds extern "C")
      efe97b7b
  26. Mar 06, 2015
  27. Feb 25, 2015
Loading