From 5c41bc7da83cee39835c0e68a6bffce369a7fcdc Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 30 Mar 2014 20:14:50 +0200 Subject: php-pecl-qb: link to qb.ini --- qb.ini | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 qb.ini (limited to 'qb.ini') diff --git a/qb.ini b/qb.ini new file mode 100644 index 0000000..4b2c5f0 --- /dev/null +++ b/qb.ini @@ -0,0 +1,40 @@ +extension=qb.so + +[qb] +; Indicates whether the use of memory-mapped file is permitted +qb.allow_memory_map=On + +; Indicates whether bytecode interpretation is permitted +qb.allow_bytecode_interpretation=On + +; Indicates whether compilation to native code is permitted +qb.allow_native_compilation=Off + +; Tells QB to compile functions to native code +qb.compile_to_native=Off + +; Sets the path to the folder where native code object files are stored +; The default is the operation system's temporary folder +qb.native_code_cache_path= + +; Sets the path to the C compiler +; The default is "gcc" on Unix and "cl.exe" on Windows +qb.compiler_path= + +; Sets the PATH environment for compiler +qb.compiler_env_path= + +; Allows debug_backtrace() to see QB function calls +qb.allow_debug_backtrace=Off + +; Allows xdebug to see variables inside QB functions +qb.allow_debugger_inspection=On + +; Specifies whether QB should always send the variable type or not +qb.debug_with_exact_type=Off + +; Whether to use column-major matrix convention instead of row-major +qb.column_major_matrix=Off + +; The number of execution threads (0 means the number of CPU on the system) +qb.thread_count=0 -- cgit