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:34:53 (GMT) |
commit | 020c32859d19873e8555d848785f0b584d4249f9 (patch) | |
tree | d0982246fac00668595d85f3062c76daa51a5a99 | |
parent | df0d273a07b0ca5ea4a9d8e140e1fa6425430e4a (diff) | |
download | jemalloc-020c32859d19873e8555d848785f0b584d4249f9.zip jemalloc-020c32859d19873e8555d848785f0b584d4249f9.tar.gz jemalloc-020c32859d19873e8555d848785f0b584d4249f9.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 |