diff options
author | Bai <ShuangxueBai@users.noreply.github.com> | 2016-08-28 05:51:57 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-09-26 22:35:30 (GMT) |
commit | 15da5f5d9d0e44cceb66bb13fad969d51145a616 (patch) | |
tree | 9e93f2d57babf9670b3cde1cdb3e29e646d9fedc | |
parent | b54c0c2925fd5acd63fd3957aa9e177c3fd8d27f (diff) | |
download | jemalloc-15da5f5d9d0e44cceb66bb13fad969d51145a616.zip jemalloc-15da5f5d9d0e44cceb66bb13fad969d51145a616.tar.gz jemalloc-15da5f5d9d0e44cceb66bb13fad969d51145a616.tar.bz2 |
Readme.txt error for building in the Windows
The command can't work using sh -C sh -c "./autogen.sh CC=cl --enable-lazy-lock=no".
Change the position of the colon, the command of autogen work.
-rw-r--r-- | msvc/ReadMe.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msvc/ReadMe.txt b/msvc/ReadMe.txt index 02b97f7..b1c2fc5 100644 --- a/msvc/ReadMe.txt +++ b/msvc/ReadMe.txt @@ -17,7 +17,7 @@ How to build jemalloc for Windows (note: x86/x64 doesn't matter at this point) 5. Generate header files: - sh -c "./autogen.sh CC=cl --enable-lazy-lock=no" + sh -c "./autogen.sh" CC=cl --enable-lazy-lock=no 6. Now the project can be opened and built in Visual Studio: msvc\jemalloc_vc2015.sln |