1. 18 Feb, 2013 11 commits
  2. 15 Feb, 2013 3 commits
  3. 14 Feb, 2013 3 commits
  4. 11 Feb, 2013 2 commits
  5. 07 Feb, 2013 3 commits
  6. 06 Feb, 2013 7 commits
  7. 05 Feb, 2013 2 commits
  8. 29 Jan, 2013 3 commits
  9. 25 Jan, 2013 4 commits
  10. 24 Jan, 2013 2 commits
    • Alexander Kartashov's avatar
      zdtm: autodetect the target machine v2 · d9adda7c
      Alexander Kartashov authored
      Andrew Vagin pointed out that the static testsuite compilation
      may run as standalone so the variable ARCH won't be available.
      
      This patch introduces the facility test/zdtm/Makefile.inc
      designated to detect the target machine automatically
      if the variable ARCH isn't defined. This makefile is supposed
      to be included into all test subsuite Makefiles.
      
      Andrew Vagin also pointed out that machine-dependent tests
      may be added into non-static subsuites as well so the macro
      adding machine-specific headers into CPPFLAGS goes to
      the file test/zdtm/Makefile.inc.
      Signed-off-by: 's avatarAlexander Kartashov <alekskartashov@parallels.com>
      Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
      d9adda7c
    • Cyrill Gorcunov's avatar
      make: protobuf -- Order .c files generation · 008457e1
      Cyrill Gorcunov authored
      This patch introduce dependencies on .c files
      generation parsing import keywords in .proto
      files.
      
      In particular, the core.proto file refers to
      core-x86.proto which means we need to generate
      .[c|h] files from core-x86.proto earlier than
      handlig of core.proto.
      
      A positive side effect of this patch is that
      the compilation is independent now of order the
      proto files are declated in the make file.
      
      Instead of currently present manual order
      
      PROTO_FILES	+= core-x86.proto
      PROTO_FILES	+= core-arm.proto
      PROTO_FILES	+= core.proto
      
      one can write it in any arrangement, say
      
      PROTO_FILES     += core.proto
      PROTO_FILES     += core-arm.proto
      PROTO_FILES     += core-x86.proto
      
      and it still be resolved correctly.
      
      BUT beware of circular import directives,
      we can't handle them now.
      Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
      Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
      008457e1