1. 12 Aug, 2014 1 commit
  2. 16 Mar, 2013 1 commit
  3. 01 Nov, 2012 1 commit
    • antirez's avatar
      32 bit build fixed on Linux. · d36fb95a
      antirez authored
      It failed because of the way jemalloc was compiled (without passing the
      right flags to make, but just to configure). Now the same set of flags
      are also passed to the make command, fixing the issue.
      
      This fixes issue #744
      d36fb95a
  4. 11 Apr, 2012 1 commit
    • Pieter Noordhuis's avatar
      Clean up Makefiles · 0a08d2b0
      Pieter Noordhuis authored
      Remove unused variables. Instead of overriding non-standard variables
      such as ARCH and PROF, use standard variables CFLAGS and LDFLAGS to
      override Makefile settings. Move dependencies generated by `make dep` to
      a separate file.
      0a08d2b0
  5. 15 Nov, 2011 1 commit
    • Pieter Noordhuis's avatar
      Rebuild deps/ and src/ when ARCH changes · 4b8a6394
      Pieter Noordhuis authored
      This change moves the build instructions for dependencies to a separate
      Makefile in deps/. The ARCH environment variable is stored in a
      .make-arch file in the same directory as the Makefile. The contents of
      this file is read and compared to the current ARCH, and, on a mismatch
      triggers rebuilding the entire source tree.
      
      When file .make-arch exists and matches with ARCH from the environment,
      the dependencies are assumed to already be built.
      
      The new "clean" target only cleans the Redis source tree, not its
      dependencies. To clear the dependencies as well, the "distclean" target
      can be used.
      4b8a6394