Explorar el Código

Merge pull request #272 from vapier/master

Fix Android/MIPS build.
main
Chris Mumford hace 8 años
padre
commit
5d36bedd1c
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      port/atomic_pointer.h

+ 9
- 0
port/atomic_pointer.h Ver fichero

@ -39,6 +39,8 @@
#define ARCH_CPU_ARM64_FAMILY 1
#elif defined(__ppc__) || defined(__powerpc__) || defined(__powerpc64__)
#define ARCH_CPU_PPC_FAMILY 1
#elif defined(__mips__)
#define ARCH_CPU_MIPS_FAMILY 1
#endif
namespace leveldb {
@ -110,6 +112,13 @@ inline void MemoryBarrier() {
}
#define LEVELDB_HAVE_MEMORY_BARRIER
// MIPS
#elif defined(ARCH_CPU_MIPS_FAMILY) && defined(__GNUC__)
inline void MemoryBarrier() {
__asm__ __volatile__("sync" : : : "memory");
}
#define LEVELDB_HAVE_MEMORY_BARRIER
#endif
// AtomicPointer built using platform-specific MemoryBarrier()

Cargando…
Cancelar
Guardar