| Index: src/atomicops.h
|
| diff --git a/src/atomicops.h b/src/atomicops.h
|
| index 73ba94585f9dc8d16656acb016b8f6b707996f43..db1140436998ebdb6b591c7d5a2446af8ff47b77 100644
|
| --- a/src/atomicops.h
|
| +++ b/src/atomicops.h
|
| @@ -25,8 +25,8 @@
|
| #ifndef V8_ATOMICOPS_H_
|
| #define V8_ATOMICOPS_H_
|
|
|
| -#include "../include/v8.h"
|
| -#include "base/build_config.h"
|
| +#include "include/v8.h"
|
| +#include "src/base/build_config.h"
|
|
|
| #if defined(_WIN32) && defined(V8_HOST_ARCH_64_BIT)
|
| // windows.h #defines this (only on x64). This causes problems because the
|
| @@ -135,19 +135,19 @@ Atomic64 Release_Load(volatile const Atomic64* ptr);
|
|
|
| // Include our platform specific implementation.
|
| #if defined(THREAD_SANITIZER)
|
| -#include "atomicops_internals_tsan.h"
|
| +#include "src/atomicops_internals_tsan.h"
|
| #elif defined(_MSC_VER) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64)
|
| -#include "atomicops_internals_x86_msvc.h"
|
| +#include "src/atomicops_internals_x86_msvc.h"
|
| #elif defined(__APPLE__)
|
| -#include "atomicops_internals_mac.h"
|
| +#include "src/atomicops_internals_mac.h"
|
| #elif defined(__GNUC__) && V8_HOST_ARCH_ARM64
|
| -#include "atomicops_internals_arm64_gcc.h"
|
| +#include "src/atomicops_internals_arm64_gcc.h"
|
| #elif defined(__GNUC__) && V8_HOST_ARCH_ARM
|
| -#include "atomicops_internals_arm_gcc.h"
|
| +#include "src/atomicops_internals_arm_gcc.h"
|
| #elif defined(__GNUC__) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64)
|
| -#include "atomicops_internals_x86_gcc.h"
|
| +#include "src/atomicops_internals_x86_gcc.h"
|
| #elif defined(__GNUC__) && V8_HOST_ARCH_MIPS
|
| -#include "atomicops_internals_mips_gcc.h"
|
| +#include "src/atomicops_internals_mips_gcc.h"
|
| #else
|
| #error "Atomic operations are not supported on your platform"
|
| #endif
|
| @@ -155,7 +155,7 @@ Atomic64 Release_Load(volatile const Atomic64* ptr);
|
| // On some platforms we need additional declarations to make
|
| // AtomicWord compatible with our other Atomic* types.
|
| #if defined(__APPLE__) || defined(__OpenBSD__)
|
| -#include "atomicops_internals_atomicword_compat.h"
|
| +#include "src/atomicops_internals_atomicword_compat.h"
|
| #endif
|
|
|
| #endif // V8_ATOMICOPS_H_
|
|
|