[PATCH] D121175: [clang] Add -Wstart-no-unknown-warning-option/-Wend-no-unknown-warning-option.

2022-03-10 Thread Zhiwei Chen via Phabricator via cfe-commits
condy added a comment. IMHO, it's the duty of build systems. CMake provides `check_cxx_compiler_flag` to report unknown options. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D121175/new/ https://reviews.llvm.org/D121175 __

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-20 Thread Zhiwei Chen via Phabricator via cfe-commits
condy added a comment. In D102592#2769811 , @eugenis wrote: > I think it is too hit-and-miss to add even under a flag. It's just not the > right approach - but I also don't know what the right approach would be. > > Perhaps adding a small left redzone fo

[PATCH] D102469: [sanitizer] Reduce redzone size for small size global objects

2021-05-19 Thread Zhiwei Chen via Phabricator via cfe-commits
condy marked 3 inline comments as done. condy added inline comments. Comment at: llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp:2556 + uint64_t RZ = 0; + if (SizeInBytes < MinRZ / 2) { +// Reduce redzone size for small size objects, e.g. int, char[1]. MinRZ is ---

[PATCH] D102469: [sanitizer] Reduce redzone size for small size global objects

2021-05-19 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 346612. condy added a comment. Apply optimization when SizeInBytes <= MinRZ/2 Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102469/new/ https://reviews.llvm.org/D102469 Files: clang/test/CodeGen/asan-globals-a

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-18 Thread Zhiwei Chen via Phabricator via cfe-commits
condy added a comment. In D102592#2764357 , @eugenis wrote: > You are adding a new global to every translation unit. > > - Private linkage would not allow them to be merged, this can have > significant binary size and RAM overhead. Do you suggest linkon

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-18 Thread Zhiwei Chen via Phabricator via cfe-commits
condy added a comment. In D102592#2764085 , @vitalybuka wrote: > Would you mind to add compiler-rt/test/asan which triggers this one? Yes, I will. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102592/new/

[PATCH] D102469: [sanitizer] Reduce redzone size for small size global objects

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy marked an inline comment as done. condy added inline comments. Comment at: llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp:2556-2559 + // Reduce redzone size for small size objects, e.g. int, char[1]. MinRZ is at + // least 32 bytes, optimize when SizeInBytes is

[PATCH] D102469: [sanitizer] Reduce redzone size for small size global objects

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 346055. condy added a comment. Update as suggected Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102469/new/ https://reviews.llvm.org/D102469 Files: clang/test/CodeGen/asan-globals-alias.cpp clang/test/CodeG

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 345786. condy added a comment. Fix typos Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102592/new/ https://reviews.llvm.org/D102592 Files: clang/test/CodeGen/asan-globals-alias.cpp clang/test/CodeGen/asan-gl

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 345784. condy added a comment. Fix all tests Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102592/new/ https://reviews.llvm.org/D102592 Files: clang/test/CodeGen/asan-globals-alias.cpp clang/test/CodeGen/asa

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 345777. condy added a comment. Fix some tests Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102592/new/ https://reviews.llvm.org/D102592 Files: clang/test/CodeGen/asan-globals-alias.cpp clang/test/CodeGen/as

[PATCH] D102592: [sanitizer] Caught global buffer underflow for first variable

2021-05-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 345767. condy added a comment. Herald added a project: clang. Herald added a subscriber: cfe-commits. Fix some tests Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102592/new/ https://reviews.llvm.org/D102592 Fil

[PATCH] D102469: [sanitizer] Reduce redzone size for small size global objects

2021-05-14 Thread Zhiwei Chen via Phabricator via cfe-commits
condy updated this revision to Diff 345386. condy added a comment. Herald added a project: clang. Herald added a subscriber: cfe-commits. Fix clang/codegen tests Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102469/new/ https://reviews.llvm.org/D10

[PATCH] D90448: [clang] Add type check for explicit instantiation of static data members

2021-01-17 Thread Zhiwei Chen via Phabricator via cfe-commits
condy added a comment. The tests failed though Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D90448/new/ https://reviews.llvm.org/D90448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lis

Re: Review Request 47484: Added -lelf to default dynamic libraries on Linux.

2016-05-19 Thread Zhiwei Chen
find libz on both Ubuntu and CentOS. - Zhiwei Chen On May 18, 2016, 3:17 a.m., Kevin Klues wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://reviews.a

Re: Review Request 47324: Update leveldb to 1.18.

2016-05-15 Thread Zhiwei Chen
passed. - Zhiwei Chen On May 14, 2016, 11:01 p.m., Tomasz Janiszewski wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache

Re: Review Request 47324: Update leveldb.

2016-05-13 Thread Zhiwei Chen
----- > > (Updated May 13, 2016, 4:46 a.m.) > > > Review request for mesos, Bing Li, Benjamin Mahler, Zhiwei Chen, and haosdent > huang. > > > Bugs: MESOS-970 > https://issues.apache.org/jira/browse/MESOS-970

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-11 Thread Zhiwei Chen
: https://reviews.apache.org/r/46958/diff/ Testing --- ./configure --enable-ssl --enable-libevent && make Thanks, Zhiwei Chen

Re: Review Request 46816: Fix the absolute symlink path issue of include/slave.

2016-05-10 Thread Zhiwei Chen
To reply, visit: https://reviews.apache.org/r/46816/#review132565 --- On May 5, 2016, 2:23 p.m., Zhiwei Chen wrote: > > --- > This is an automatically generated e-mail.

Re: Review Request 46816: Fix the absolute symlink path issue of include/slave.

2016-05-10 Thread Zhiwei Chen
not sure if this copy-template-and-create-symlink should be removed of not, since MESOS-3782 & MESOS-5230 already completed. This blocked our daily build. Thanks, Zhiwei Chen

Review Request 47056: Remove python-boto since 'mesos-ec2' has been removed.

2016-05-05 Thread Zhiwei Chen
iff: https://reviews.apache.org/r/47056/diff/ Testing --- make check Thanks, Zhiwei Chen

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-05 Thread Zhiwei Chen
getting started document. Diffs (updated) - docs/getting-started.md e6be2818f6e1fa9bfbea5dc977ca0aa978532e8e Diff: https://reviews.apache.org/r/46958/diff/ Testing --- ./configure --enable-ssl --enable-libevent && make Thanks, Zhiwei Chen

Re: Review Request 46816: Fix the absolute symlink path issue of include/slave.

2016-05-04 Thread Zhiwei Chen
eted. This blocked our daily build. Thanks, Zhiwei Chen

Re: Review Request 46872: Updated quota.md and weights.md for set quota and update weight.

2016-05-04 Thread Zhiwei Chen
ports raw data and a file path. But this patch makes the doc more friendly to beginners. - Zhiwei Chen On May 3, 2016, 6:35 a.m., Guangya Liu wrote: > > --- > This is an automatically generated e-mail. To reply,

Re: Review Request 45995: Fixed memory leak of `Route` in `finalize()` in libprocess.

2016-05-04 Thread Zhiwei Chen
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/45995/#review131788 --- Ship it! Ship It! - Zhiwei Chen On May 3, 2016, 5:40 p.m

Review Request 47003: Fixed table accessibility.

2016-05-04 Thread Zhiwei Chen
/browse/MESOS-5201 Repository: mesos Description --- Fixed table accessibility. Diffs - src/webui/master/static/home.html 4b201d72f9dfd787133008b8105a225ffb2747aa Diff: https://reviews.apache.org/r/47003/diff/ Testing --- Thanks, Zhiwei Chen

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-04 Thread Zhiwei Chen
> > libevent are enabled)." Thank you very much, I missed this. - Zhiwei --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/46958/#review131642 ------

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-04 Thread Zhiwei Chen
: https://reviews.apache.org/r/46958/diff/ Testing --- ./configure --enable-ssl --enable-libevent && make Thanks, Zhiwei Chen

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-04 Thread Zhiwei Chen
: https://reviews.apache.org/r/46958/diff/ Testing --- ./configure --enable-ssl --enable-libevent && make Thanks, Zhiwei Chen

Re: Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-04 Thread Zhiwei Chen
-- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/46958/#review131637 --- On May 4, 2016, 10:50 a.m., Zhiwei Chen wrote: > > --

Re: Review Request 46730: Cleanup syscalls logic.

2016-05-03 Thread Zhiwei Chen
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/46730/#review131612 --- Ship it! Ship It! - Zhiwei Chen On April 29, 2016, 9:03 p.m

Review Request 46958: Added Ubuntu 16.04 LTS to getting started document.

2016-05-03 Thread Zhiwei Chen
/ Testing --- ./configure --enable-ssl --enable-libevent && make Thanks, Zhiwei Chen

Re: Review Request 46816: Fix the absolute symlink path issue of include/slave.

2016-05-03 Thread Zhiwei Chen
our daily build. Thanks, Zhiwei Chen

Re: Review Request 46813: Update distribute to setuptools.

2016-05-03 Thread Zhiwei Chen
thon.org/pypi/setuptools Do we have any reasons to use > > 20.9.0? > > Zhiwei Chen wrote: > oh, it's latest version is 20.9.0 when I first testing this patch. I will > try to upgrade to the latest one. I found setuptools now upgrade to 21.0.0, it's version grows t

Re: Review Request 46813: Update distribute to setuptools.

2016-04-29 Thread Zhiwei Chen
ail. To reply, visit: https://reviews.apache.org/r/46813/#review131118 ------- On April 29, 2016, 5:13 p.m., Zhiwei Chen wrote: > > --- > This is an automatically generated e-

Re: Review Request 46813: Update distribute to setuptools.

2016-04-29 Thread Zhiwei Chen
d failed, because the package pytz-2010h-2.el6.noarch was installed, when I removed this package verything ok. The default RHEL/CentOS 6.6 has no pytz-2010h-2.el6.noarch, so I think it's ok for this patch. Thanks, Zhiwei Chen

Re: Review Request 46813: Update distribute to setuptools.

2016-04-29 Thread Zhiwei Chen
-mail. To reply, visit: https://reviews.apache.org/r/46813/#review131053 --- On April 29, 2016, 4:36 p.m., Zhiwei Chen wrote: > > --- > This is an automatically generated e-mail.

Re: Review Request 46813: Update distribute to setuptools.

2016-04-29 Thread Zhiwei Chen
ause the package pytz-2010h-2.el6.noarch was installed, when I removed this package verything ok. The default RHEL/CentOS 6.6 has no pytz-2010h-2.el6.noarch, so I think it's ok for this patch. Thanks, Zhiwei Chen

Review Request 46816: Fix the absolute symlink path issue of include/slave.

2016-04-28 Thread Zhiwei Chen
relative path. I am not sure if this copy-template-and-create-symlink should be removed of not, since MESOS-3782 & MESOS-5230 already completed. This blocked our daily build. Thanks, Zhiwei Chen

Review Request 46813: Update distribute to setuptools.

2016-04-28 Thread Zhiwei Chen
package verything ok. The default RHEL/CentOS 6.6 has no pytz-2010h-2.el6.noarch, so I think it's ok for this patch. Thanks, Zhiwei Chen

Re: Review Request 46102: Fixed logic error in execute.cpp.

2016-04-12 Thread Zhiwei Chen
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/46102/#review128599 --- Ship it! Ship It! - Zhiwei Chen On April 13, 2016, 7:34 a.m

Re: Review Request 45917: Disable http-parser strict mode to allow flexible http header fields.

2016-04-10 Thread Zhiwei Chen
r cmake, since I can't build Mesos with cmake even on master branch. - Zhiwei ------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/45917/#review127819 -

Re: Review Request 45917: Disable http-parser strict mode to allow flexible http header fields.

2016-04-10 Thread Zhiwei Chen
/libprocess/src/tests/ssl_tests.cpp aa6021cadd4a1934afaf7f258ab8bcb83cafd6cb Diff: https://reviews.apache.org/r/45917/diff/ Testing --- ./configure --enable-ssl --enable-libevent make distcheck Thanks, Zhiwei Chen

Review Request 45917: Disable http-parser strict mode to allow flexible http header fields.

2016-04-08 Thread Zhiwei Chen
/diff/ Testing --- ./configure --enable-ssl --enable-libevent make distcheck Thanks, Zhiwei Chen

Re: Review Request 45803: Add PowerPC LE CI for support/docker_build.sh.

2016-04-08 Thread Zhiwei Chen
/ Testing --- On a PowerPC machine, run following command: ENVIRONMENT='GLOG_v=0' CONFIGURATION='--enable-libevent --enable-ssl' OS='ppc64le/ubuntu:14.04' COMPILER=gcc ./support/docker_build.sh Thanks, Zhiwei Chen

Re: Review Request 45803: Add PowerPC LE CI for support/docker_build.sh.

2016-04-08 Thread Zhiwei Chen
atically generated e-mail. To reply, visit: https://reviews.apache.org/r/45803/#review127676 ------- On April 6, 2016, 5:25 p.m., Zhiwei Chen wrote: > > --- > This is an automatically generat

Review Request 45803: Add PowerPC LE CI for support/docker_build.sh.

2016-04-06 Thread Zhiwei Chen
following command: ENVIRONMENT='GLOG_v=0' CONFIGURATION='--enable-libevent --enable-ssl' OS='ppc64le/ubuntu:14.04' COMPILER=gcc ./support/docker_build.sh Thanks, Zhiwei Chen

Re: Review Request 42551: Porting mesos on ppc64le.

2016-04-05 Thread Zhiwei Chen
> On March 24, 2016, 10:14 p.m., Mesos ReviewBot wrote: > > Patch looks great! > > > > Reviews applied: [42551] > > > > Passed command: export OS='ubuntu:14.04' CONFIGURATION='--verbose' > > COMPILER='gcc' ENVIRONMENT='GLOG_v=1 MESOS_VERBOSE=1'; > > ./support/docker_build.sh This seems not t

Review Request 45734: Fix 'pivot_root is not available' error on powerpc platform.

2016-04-05 Thread Zhiwei Chen
/configure --enable-libevent --enable-ssl make -j60 make dist check -j60 Thanks, Zhiwei Chen

Re: Review Request 45528: Upgrade http-parser to v2.6.2 [mesos].

2016-04-04 Thread Zhiwei Chen
35d7e98e9de7dcebbba3b7cdf4d139c918b6f6de LICENSE 1c0355c1462654e1c30546b448f503cd6365dc46 Diff: https://reviews.apache.org/r/45528/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45527: Upgrade http-parser to v2.6.2 [libprocess].

2016-04-04 Thread Zhiwei Chen
/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45527: Upgrade http-parser to v2.6.2 [libprocess].

2016-04-04 Thread Zhiwei Chen
-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-31 Thread Zhiwei Chen
-libevent --enable-ssl sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45376: Add zookeeper patch for 3.4.8 to support PPC LE platform.

2016-03-31 Thread Zhiwei Chen
is is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/45376/#review126364 ------- On April 1, 2016, 5:49 a.m., Zhiwei Chen wrote: > > --- > Th

Re: Review Request 45376: Add zookeeper patch for 3.4.8 to support PPC LE platform.

2016-03-31 Thread Zhiwei Chen
=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform [libprocess].

2016-03-31 Thread Zhiwei Chen
--benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-31 Thread Zhiwei Chen
--prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-31 Thread Zhiwei Chen
esos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform [libprocess].

2016-03-31 Thread Zhiwei Chen
ache.org/r/44378/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45528: [WIP] Upgrade http-parser to v2.6.2 [mesos].

2016-03-31 Thread Zhiwei Chen
is is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/45528/#review126288 --- On March 31, 2016, 5:48 p.m., Zhiwei Chen wrote: > > --

Re: Review Request 45528: [WIP] Upgrade http-parser to v2.6.2 [mesos].

2016-03-31 Thread Zhiwei Chen
4cc7f5b321a468bdbdac189b4cf8dc065735ebaa Diff: https://reviews.apache.org/r/45528/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45527: Upgrade http-parser to v2.6.2 [libprocess].

2016-03-31 Thread Zhiwei Chen
--enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45528: [WIP] Upgrade http-parser to v2.6.2 [mesos].

2016-03-31 Thread Zhiwei Chen
4cc7f5b321a468bdbdac189b4cf8dc065735ebaa Diff: https://reviews.apache.org/r/45528/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45527: Upgrade http-parser to v2.6.2 [libprocess].

2016-03-31 Thread Zhiwei Chen
/3rdparty/http-parser-2.6.2.tar.gz PRE-CREATION 3rdparty/libprocess/3rdparty/versions.am 462a867f4c4e8fce0b62f95bac05ae069281393f Diff: https://reviews.apache.org/r/45527/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Review Request 45527: Upgrade http-parser to v2.6.2 [libprocess].

2016-03-31 Thread Zhiwei Chen
3rdparty/libprocess/3rdparty/versions.am 462a867f4c4e8fce0b62f95bac05ae069281393f Diff: https://reviews.apache.org/r/45527/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Review Request 45528: Upgrade http-parser to v2.6.2 [mesos].

2016-03-31 Thread Zhiwei Chen
--enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45471: Fix a test case bug due to upgrade http-parser to 2.6.1.

2016-03-30 Thread Zhiwei Chen
of 2.6.1? Yes, I think I need to create another ticket to upgrade to 2.6.2. - Zhiwei --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/45471/#review126160 -----

Re: Review Request 45471: Fix a test case bug due to upgrade http-parser to 2.6.1.

2016-03-29 Thread Zhiwei Chen
://reviews.apache.org/r/45471/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45471: Fix a test case bug due to upgrade http-parser to 2.6.1.

2016-03-29 Thread Zhiwei Chen
Diff: https://reviews.apache.org/r/45471/diff/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Review Request 45471: Fix a test case bug due to upgrade http-parser to 2.6.1.

2016-03-29 Thread Zhiwei Chen
/ Testing --- ../configure --enable-libevent --enable-ssl sudo make dist check Thanks, Zhiwei Chen

Re: Review Request 45368: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [libprocess].

2016-03-29 Thread Zhiwei Chen
-libevent --enable-ssl sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform [libprocess].

2016-03-29 Thread Zhiwei Chen
--benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-29 Thread Zhiwei Chen
--prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45368: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [libprocess].

2016-03-29 Thread Zhiwei Chen
-libevent --enable-ssl sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45367: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [mesos].

2016-03-29 Thread Zhiwei Chen
./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44257: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [stout].

2016-03-29 Thread Zhiwei Chen
/ Testing (updated) --- ../configure --enable-libevent --enable-ssl sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-28 Thread Zhiwei Chen
=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform [libprocess].

2016-03-28 Thread Zhiwei Chen
--benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45367: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [mesos].

2016-03-28 Thread Zhiwei Chen
sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45368: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [libprocess].

2016-03-28 Thread Zhiwei Chen
37debf Diff: https://reviews.apache.org/r/45368/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 45369: Upgrade http-parser to 2.6.1 to support PowerPC LE platform [mesos].

2016-03-28 Thread Zhiwei Chen
2e3c47d01e26cd39 Diff: https://reviews.apache.org/r/45369/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Review Request 45376: Add zookeeper patch for 3.4.8 to support PPC LE platform.

2016-03-27 Thread Zhiwei Chen
sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform [libprocess].

2016-03-27 Thread Zhiwei Chen
/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Review Request 45371: Upgrade libev to 4.22 to support PowerPC LE platform [mesos].

2016-03-27 Thread Zhiwei Chen
/ext_modules.py.in c335bd83024bc07b6243dd59d775e7f29adc7520 Diff: https://reviews.apache.org/r/45371/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44372: Upgrade http-parser to 2.6.1 to support PPC LE platform [libprocess].

2016-03-27 Thread Zhiwei Chen
sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Review Request 45369: Upgrade http-parser to 2.6.1 to support PowerPC LE platform [mesos].

2016-03-27 Thread Zhiwei Chen
/r/45369/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Review Request 45367: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [mesos].

2016-03-27 Thread Zhiwei Chen
4c50fbbf1ce11c4c42c848364523225ee7ea5a3b Diff: https://reviews.apache.org/r/45367/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Review Request 45368: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [libprocess].

2016-03-27 Thread Zhiwei Chen
, Zhiwei Chen

Re: Review Request 44257: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [stout].

2016-03-27 Thread Zhiwei Chen
/44257/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44257: Upgrade protobuf to 2.6.1 to support PowerPC LE platform [stout].

2016-03-27 Thread Zhiwei Chen
./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44257: Upgrade protobuf to 2.6.1 to support PowerPC LE platform.

2016-03-27 Thread Zhiwei Chen
On March 24, 2016, 9:28 a.m., Zhiwei Chen wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/44257/ >

Re: Review Request 44376: [WIP]Upgrade zookeeper to 3.4.8 to support PowerPC LE platform.

2016-03-24 Thread Zhiwei Chen
Thanks, Zhiwei Chen

Re: Review Request 44376: Upgrade zookeeper to 3.4.8 to support PowerPC LE platform.

2016-03-24 Thread Zhiwei Chen
=./build Thanks, Zhiwei Chen

Re: Review Request 44378: Upgrade libev to 4.22 to support PowerPC LE platform.

2016-03-23 Thread Zhiwei Chen
c335bd83024bc07b6243dd59d775e7f29adc7520 Diff: https://reviews.apache.org/r/44378/diff/ Testing --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44257: Upgrade protobuf to 2.6.1 to support PowerPC LE platform.

2016-03-23 Thread Zhiwei Chen
, Zhiwei Chen

Re: Review Request 44372: Upgrade http-parser to 2.6.1 to support PowerPC LE platform.

2016-03-23 Thread Zhiwei Chen
tp-parser-2.6.1.tar.gz > > b/3rdparty/libprocess/3rdparty/http-parser-2.6.1.tar.gz > > new file mode 100644 > > index > > ..06528d5a456d6aa8dcee18159392d2ed4e5f3866 > > Binary files /dev/null and > > b/3rdparty/libproce

Re: Review Request 44372: Upgrade http-parser to 2.6.1 to support PowerPC LE platform.

2016-03-23 Thread Zhiwei Chen
tp-parser-2.6.1.tar.gz > > b/3rdparty/libprocess/3rdparty/http-parser-2.6.1.tar.gz > > new file mode 100644 > > index > > ..06528d5a456d6aa8dcee18159392d2ed4e5f3866 > > Binary files /dev/null and > > b/3rdparty/libproce

Re: Review Request 44372: Upgrade http-parser to 2.6.1 to support PowerPC LE platform.

2016-03-23 Thread Zhiwei Chen
sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44382: Update leveldb-1.4.patch to support PowerPC LE platform.

2016-03-22 Thread Zhiwei Chen
ad8c19b9caa856ff85978ba832d48df11b3a83f0 Diff: https://reviews.apache.org/r/44382/diff/ Testing (updated) --- sudo make dist check sudo ./src/mesos-tests --benchmark sudo ./support/run-upgrade.py --prev=../mesos-0.27.0/build --next=./build Thanks, Zhiwei Chen

Re: Review Request 44376: Upgrade zookeeper to 3.4.8 to support Power LE platform.

2016-03-21 Thread Zhiwei Chen
=./build Thanks, Zhiwei Chen

  1   2   3   >