Changes between Version 20 and Version 21 of CompilationGuide/MSVC
- Timestamp:
- Apr 10, 2016, 9:10:36 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/MSVC
v20 v21 84 84 {{{ 85 85 #!div style="border: 1pt dotted; margin: 1em; background-color: #fffff9;" 86 '''Note:''' You might see an error saying cl can't generate executable; this is because you installed the `link.exe` from MSYS. It conflicts with the `link.exe` of Visual Studio. 86 '''Note:''' You might see an error saying cl can't generate executable; this is because you installed the `link.exe` from MSYS. It conflicts with the `link.exe` of Visual Studio. This can also indicate that you are mixing 64bit and 32bit versions of `cl.exe` and `link.exe`. 87 87 }}} 88 88 … … 102 102 }}} 103 103 104 You might see two problems when building `ffmpeg`: 104 or in the case of 64bit builds 105 106 {{{ 107 /c/Program Files (x86)/Microsoft Visual Studio 12.0/VC/BIN/amd64/link.exe 108 }}} 109 110 You might see three problems when building `ffmpeg`: 105 111 106 112 1. `pr` command not found: … … 111 117 112 118 In the end of configuration, you might also see `pkg-config` not found issue. That won't affect compilation, you can ignore it. It is said that installing `pkg-config` to MSYS is kinda tiresome. 119 120 3. `common.mak:140: *** missing separator. Stop.` 121 122 This can happen if you try to build from a cloned git repository and have git configured to replace line endings in your local working copy. Be sure that you have the git option `core.autocrlf` set to `false` when cloning the git repo. 113 123 114 124 How to build debug version?
