Oraoto

Results 36 comments of Oraoto

I encounter the same problem when building the Docker images. Some quick search leads to this sync hack: https://github.com/moby/moby/issues/9547#issuecomment-77547893 ``` .PHONY: uninstallopencv uninstallopencv: sync ./uninstall-opencv.sh ```

之前内存泄漏严重,heapTotal 40多M,但是rss有两G。 升级到Node 7.9.0,10个号,挂1天内存没超80M。

@spacelan 内存泄漏的是 v6.10.1

网页版微信是获取不到微信号的,虽然有些人的wxid和微信号相同。

@Dexus Sorry, icu doesn’t compile yet. I should remove --enable-intl in build.sh

You can buile PIB for NodeJS by changing the build config to: ```bash emcc -O3 \ -s WASM=1 \ -s EXPORTED_FUNCTIONS='["_pib_eval", "_php_embed_init", "_zend_eval_string", "_php_embed_shutdown"]' \ -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall"]' \ -s TOTAL_MEMORY=134217728...

@domozhirov To run PHP CLI is also possible: Enable CLI, notice the `--enable-cli`: ```sh emconfigure ./configure \ --disable-all \ --disable-cgi \ --enable-cli \ --disable-rpath \ --disable-phpdbg \ --without-pear \ --without-pcre-jit...

We can reuse [php-src/tests](https://github.com/php/php-src/tree/master/tests)

I had considered implement DOM access through EM_ASM, but it require too much work. EM_ASM works with C/C++, so we need a PHP extension. And to do useful things, we...

From the memory trace, 2 big chunk of memroy is not free: ![image](https://user-images.githubusercontent.com/24709398/40914363-7d057400-682a-11e8-896b-06e254d6a344.png) Some printf before mmap and munmap: ``` mmap addr: 6684672, size: 2097152 munmap addr: 6684672, size: 2097152...