|
@@ -121,8 +121,8 @@ int main ()
|
|
|
set $ac_cv_v8_version
|
|
|
IFS=$ac_IFS
|
|
|
V8_API_VERSION=`expr [$]1 \* 1000000 + [$]2 \* 1000 + [$]3`
|
|
|
- if test "$V8_API_VERSION" -lt 3024006 ; then
|
|
|
- AC_MSG_ERROR([libv8 must be version 3.24.6 or greater])
|
|
|
+ if test "$V8_API_VERSION" -lt 4006076 ; then
|
|
|
+ AC_MSG_ERROR([libv8 must be version 4.6.76 or greater])
|
|
|
fi
|
|
|
AC_DEFINE_UNQUOTED([PHP_V8_API_VERSION], $V8_API_VERSION, [ ])
|
|
|
AC_DEFINE_UNQUOTED([PHP_V8_VERSION], "$ac_cv_v8_version", [ ])
|
|
@@ -130,129 +130,116 @@ int main ()
|
|
|
AC_MSG_ERROR([could not determine libv8 version])
|
|
|
fi
|
|
|
|
|
|
- if test "$V8_API_VERSION" -ge 3029036 ; then
|
|
|
- dnl building for v8 3.29.36 or later, which requires us to
|
|
|
- dnl initialize and provide a platform; hence we need to
|
|
|
- dnl link in libplatform to make our life easier.
|
|
|
- PHP_ADD_INCLUDE($V8_DIR)
|
|
|
+ PHP_ADD_INCLUDE($V8_DIR)
|
|
|
|
|
|
- case $host_os in
|
|
|
- darwin* )
|
|
|
- static_link_extra="libv8_libplatform.a libv8_libbase.a"
|
|
|
- ;;
|
|
|
- * )
|
|
|
- static_link_extra="libv8_libplatform.a"
|
|
|
- ;;
|
|
|
- esac
|
|
|
-
|
|
|
- LDFLAGS_libplatform=""
|
|
|
- for static_link_extra_file in $static_link_extra; do
|
|
|
- AC_MSG_CHECKING([for $static_link_extra_file])
|
|
|
-
|
|
|
- for i in $PHP_V8JS $SEARCH_PATH ; do
|
|
|
- if test -r $i/lib64/$static_link_extra_file; then
|
|
|
- static_link_dir=$i/lib64
|
|
|
- AC_MSG_RESULT(found in $i)
|
|
|
- fi
|
|
|
- if test -r $i/lib/$static_link_extra_file; then
|
|
|
- static_link_dir=$i/lib
|
|
|
- AC_MSG_RESULT(found in $i)
|
|
|
- fi
|
|
|
- done
|
|
|
-
|
|
|
- if test -z "$static_link_dir"; then
|
|
|
- AC_MSG_RESULT([not found])
|
|
|
- AC_MSG_ERROR([Please provide $static_link_extra_file next to the libv8.so, see README.md for details])
|
|
|
- fi
|
|
|
-
|
|
|
- LDFLAGS_libplatform="$LDFLAGS_libplatform $static_link_dir/$static_link_extra_file"
|
|
|
- done
|
|
|
+ case $host_os in
|
|
|
+ darwin* )
|
|
|
+ static_link_extra="libv8_libplatform.a libv8_libbase.a"
|
|
|
+ ;;
|
|
|
+ * )
|
|
|
+ static_link_extra="libv8_libplatform.a"
|
|
|
+ ;;
|
|
|
+ esac
|
|
|
|
|
|
- # modify flags for (possibly) succeeding V8 startup check
|
|
|
- CPPFLAGS="$CPPFLAGS -I$V8_DIR"
|
|
|
- LIBS="$LIBS $LDFLAGS_libplatform"
|
|
|
- fi
|
|
|
+ LDFLAGS_libplatform=""
|
|
|
+ for static_link_extra_file in $static_link_extra; do
|
|
|
+ AC_MSG_CHECKING([for $static_link_extra_file])
|
|
|
+
|
|
|
+ for i in $PHP_V8JS $SEARCH_PATH ; do
|
|
|
+ if test -r $i/lib64/$static_link_extra_file; then
|
|
|
+ static_link_dir=$i/lib64
|
|
|
+ AC_MSG_RESULT(found in $i)
|
|
|
+ fi
|
|
|
+ if test -r $i/lib/$static_link_extra_file; then
|
|
|
+ static_link_dir=$i/lib
|
|
|
+ AC_MSG_RESULT(found in $i)
|
|
|
+ fi
|
|
|
+ done
|
|
|
+
|
|
|
+ if test -z "$static_link_dir"; then
|
|
|
+ AC_MSG_RESULT([not found])
|
|
|
+ AC_MSG_ERROR([Please provide $static_link_extra_file next to the libv8.so, see README.md for details])
|
|
|
+ fi
|
|
|
+
|
|
|
+ LDFLAGS_libplatform="$LDFLAGS_libplatform $static_link_dir/$static_link_extra_file"
|
|
|
+ done
|
|
|
+
|
|
|
+ # modify flags for (possibly) succeeding V8 startup check
|
|
|
+ CPPFLAGS="$CPPFLAGS -I$V8_DIR"
|
|
|
+ LIBS="$LIBS $LDFLAGS_libplatform"
|
|
|
+
|
|
|
+ dnl building for v8 4.4.10 or later, which requires us to
|
|
|
+ dnl provide startup data, if V8 wasn't compiled with snapshot=off.
|
|
|
+ AC_MSG_CHECKING([whether V8 requires startup data])
|
|
|
+ AC_TRY_RUN([
|
|
|
+ #include <v8.h>
|
|
|
+ #include <libplatform/libplatform.h>
|
|
|
+ #include <stdlib.h>
|
|
|
+ #include <string.h>
|
|
|
|
|
|
- if test "$V8_API_VERSION" -ge 4004010 ; then
|
|
|
- dnl building for v8 4.4.10 or later, which requires us to
|
|
|
- dnl provide startup data, if V8 wasn't compiled with snapshot=off.
|
|
|
- AC_MSG_CHECKING([whether V8 requires startup data])
|
|
|
- AC_TRY_RUN([
|
|
|
- #include <v8.h>
|
|
|
- #include <libplatform/libplatform.h>
|
|
|
- #include <stdlib.h>
|
|
|
- #include <string.h>
|
|
|
-
|
|
|
-#if PHP_V8_API_VERSION >= 4004010
|
|
|
class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
|
|
|
public:
|
|
|
- virtual void* Allocate(size_t length) {
|
|
|
- void* data = AllocateUninitialized(length);
|
|
|
- return data == NULL ? data : memset(data, 0, length);
|
|
|
- }
|
|
|
- virtual void* AllocateUninitialized(size_t length) { return malloc(length); }
|
|
|
- virtual void Free(void* data, size_t) { free(data); }
|
|
|
+ virtual void* Allocate(size_t length) {
|
|
|
+ void* data = AllocateUninitialized(length);
|
|
|
+ return data == NULL ? data : memset(data, 0, length);
|
|
|
+ }
|
|
|
+ virtual void* AllocateUninitialized(size_t length) { return malloc(length); }
|
|
|
+ virtual void Free(void* data, size_t) { free(data); }
|
|
|
};
|
|
|
-#endif
|
|
|
-
|
|
|
- int main ()
|
|
|
- {
|
|
|
- v8::Platform *v8_platform = v8::platform::CreateDefaultPlatform();
|
|
|
- v8::V8::InitializePlatform(v8_platform);
|
|
|
- v8::V8::Initialize();
|
|
|
-
|
|
|
-#if PHP_V8_API_VERSION >= 4004044
|
|
|
- static ArrayBufferAllocator array_buffer_allocator;
|
|
|
- v8::Isolate::CreateParams create_params;
|
|
|
- create_params.array_buffer_allocator = &array_buffer_allocator;
|
|
|
-
|
|
|
- v8::Isolate::New(create_params);
|
|
|
-#else /* PHP_V8_API_VERSION < 4004044 */
|
|
|
- v8::Isolate::New();
|
|
|
-#endif
|
|
|
- return 0;
|
|
|
- }
|
|
|
- ], [
|
|
|
- AC_MSG_RESULT([no])
|
|
|
- ], [
|
|
|
- AC_MSG_RESULT([yes])
|
|
|
- AC_DEFINE([PHP_V8_USE_EXTERNAL_STARTUP_DATA], [1], [Whether V8 requires (and can be provided with custom versions of) external startup data])
|
|
|
-
|
|
|
- SEARCH_PATH="$V8_DIR/lib $V8_DIR/share/v8"
|
|
|
-
|
|
|
- AC_MSG_CHECKING([for natives_blob.bin])
|
|
|
- SEARCH_FOR="natives_blob.bin"
|
|
|
-
|
|
|
- for i in $SEARCH_PATH ; do
|
|
|
- if test -r $i/$SEARCH_FOR; then
|
|
|
- AC_MSG_RESULT([found ($i/$SEARCH_FOR)])
|
|
|
- AC_DEFINE_UNQUOTED([PHP_V8_NATIVES_BLOB_PATH], "$i/$SEARCH_FOR", [Full path to natives_blob.bin file])
|
|
|
- native_blob_found=1
|
|
|
- fi
|
|
|
- done
|
|
|
-
|
|
|
- if test -z "$native_blob_found"; then
|
|
|
- AC_MSG_RESULT([not found])
|
|
|
- AC_MSG_ERROR([Please provide V8 native blob as needed])
|
|
|
- fi
|
|
|
-
|
|
|
- AC_MSG_CHECKING([for snapshot_blob.bin])
|
|
|
- SEARCH_FOR="snapshot_blob.bin"
|
|
|
-
|
|
|
- for i in $SEARCH_PATH ; do
|
|
|
- if test -r $i/$SEARCH_FOR; then
|
|
|
- AC_MSG_RESULT([found ($i/$SEARCH_FOR)])
|
|
|
- AC_DEFINE_UNQUOTED([PHP_V8_SNAPSHOT_BLOB_PATH], "$i/$SEARCH_FOR", [Full path to snapshot_blob.bin file])
|
|
|
- snapshot_blob_found=1
|
|
|
- fi
|
|
|
- done
|
|
|
-
|
|
|
- if test -z "$snapshot_blob_found"; then
|
|
|
- AC_MSG_RESULT([not found])
|
|
|
- AC_MSG_ERROR([Please provide V8 snapshot blob as needed])
|
|
|
- fi
|
|
|
- ])
|
|
|
- fi
|
|
|
+
|
|
|
+ int main ()
|
|
|
+ {
|
|
|
+ v8::Platform *v8_platform = v8::platform::CreateDefaultPlatform();
|
|
|
+ v8::V8::InitializePlatform(v8_platform);
|
|
|
+ v8::V8::Initialize();
|
|
|
+
|
|
|
+ static ArrayBufferAllocator array_buffer_allocator;
|
|
|
+ v8::Isolate::CreateParams create_params;
|
|
|
+ create_params.array_buffer_allocator = &array_buffer_allocator;
|
|
|
+
|
|
|
+ v8::Isolate::New(create_params);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ ], [
|
|
|
+ AC_MSG_RESULT([no])
|
|
|
+ ], [
|
|
|
+ AC_MSG_RESULT([yes])
|
|
|
+ AC_DEFINE([PHP_V8_USE_EXTERNAL_STARTUP_DATA], [1], [Whether V8 requires (and can be provided with custom versions of) external startup data])
|
|
|
+
|
|
|
+ SEARCH_PATH="$V8_DIR/lib $V8_DIR/share/v8"
|
|
|
+
|
|
|
+ AC_MSG_CHECKING([for natives_blob.bin])
|
|
|
+ SEARCH_FOR="natives_blob.bin"
|
|
|
+
|
|
|
+ for i in $SEARCH_PATH ; do
|
|
|
+ if test -r $i/$SEARCH_FOR; then
|
|
|
+ AC_MSG_RESULT([found ($i/$SEARCH_FOR)])
|
|
|
+ AC_DEFINE_UNQUOTED([PHP_V8_NATIVES_BLOB_PATH], "$i/$SEARCH_FOR", [Full path to natives_blob.bin file])
|
|
|
+ native_blob_found=1
|
|
|
+ fi
|
|
|
+ done
|
|
|
+
|
|
|
+ if test -z "$native_blob_found"; then
|
|
|
+ AC_MSG_RESULT([not found])
|
|
|
+ AC_MSG_ERROR([Please provide V8 native blob as needed])
|
|
|
+ fi
|
|
|
+
|
|
|
+ AC_MSG_CHECKING([for snapshot_blob.bin])
|
|
|
+ SEARCH_FOR="snapshot_blob.bin"
|
|
|
+
|
|
|
+ for i in $SEARCH_PATH ; do
|
|
|
+ if test -r $i/$SEARCH_FOR; then
|
|
|
+ AC_MSG_RESULT([found ($i/$SEARCH_FOR)])
|
|
|
+ AC_DEFINE_UNQUOTED([PHP_V8_SNAPSHOT_BLOB_PATH], "$i/$SEARCH_FOR", [Full path to snapshot_blob.bin file])
|
|
|
+ snapshot_blob_found=1
|
|
|
+ fi
|
|
|
+ done
|
|
|
+
|
|
|
+ if test -z "$snapshot_blob_found"; then
|
|
|
+ AC_MSG_RESULT([not found])
|
|
|
+ AC_MSG_ERROR([Please provide V8 snapshot blob as needed])
|
|
|
+ fi
|
|
|
+ ])
|
|
|
|
|
|
AC_LANG_RESTORE
|
|
|
LIBS=$old_LIBS
|