| OLD | NEW |
| 1 Name: yasm | 1 Name: yasm |
| 2 URL: http://www.tortall.net/projects/yasm/ | 2 URL: http://www.tortall.net/projects/yasm/ |
| 3 Version: 1.1.0 | 3 Version: 1.1.0 |
| 4 License: 2-clause or 3-clause BSD licensed, with the exception of bitvect, which
is triple-licensed under the Artistic license, GPL, and LGPL |
| 5 License File: source/patched-yasm/COPYING |
| 6 Security Critical: no |
| 7 |
| 4 With these patches merged: | 8 With these patches merged: |
| 5 * https://github.com/yasm/yasm/commit/a2cbb10ee1b90b73647667ac849c74d65761d412 | 9 * https://github.com/yasm/yasm/commit/a2cbb10ee1b90b73647667ac849c74d65761d412 |
| 6 * https://github.com/yasm/yasm/commit/01ab853e68ef8aeded716d6f5b34895200f66a51 | 10 * https://github.com/yasm/yasm/commit/01ab853e68ef8aeded716d6f5b34895200f66a51 |
| 7 * https://github.com/yasm/yasm/commit/82fafa7b5619e702c8681c959ade0746498e3cbc | 11 * https://github.com/yasm/yasm/commit/82fafa7b5619e702c8681c959ade0746498e3cbc |
| 8 * https://github.com/yasm/yasm/commit/2bd66514b6b100887c19d8598da38347b3cff40e | 12 * https://github.com/yasm/yasm/commit/2bd66514b6b100887c19d8598da38347b3cff40e |
| 9 * https://github.com/yasm/yasm/commit/ab19547382660d81e0b4a0232dccb38f44c52a36 | 13 * https://github.com/yasm/yasm/commit/ab19547382660d81e0b4a0232dccb38f44c52a36 |
| 10 | 14 |
| 11 License File: source/patched-yasm/COPYING | |
| 12 Security Critical: no | |
| 13 | 15 |
| 14 See also the yasm.gyp file for a description of the yasm build process. | 16 See also the yasm.gyp file for a description of the yasm build process. |
| 15 | 17 |
| 16 Instructions for recreating the yasm.gyp file. | 18 Instructions for recreating the yasm.gyp file. |
| 17 1) Get a clean version of the yasm source tree. The clean tree can be found | 19 1) Get a clean version of the yasm source tree. The clean tree can be found |
| 18 at: | 20 at: |
| 19 | 21 |
| 20 src/third_party/yasm/source/yasm | 22 src/third_party/yasm/source/yasm |
| 21 | 23 |
| 22 2) Run configure on the pristine source from a different directory (eg., | 24 2) Run configure on the pristine source from a different directory (eg., |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 Yasm uses python scripts to generate the assembly code description | 126 Yasm uses python scripts to generate the assembly code description |
| 125 files in C++. Make sure to get these put into the gyp file properly as | 127 files in C++. Make sure to get these put into the gyp file properly as |
| 126 well. An example is gen_x86_insn.py for x86 assembly. | 128 well. An example is gen_x86_insn.py for x86 assembly. |
| 127 | 129 |
| 128 Note that at least the gen_x86_insn.py script suffers from the same | 130 Note that at least the gen_x86_insn.py script suffers from the same |
| 129 problem as genmacro in that it outputs to the current directory by | 131 problem as genmacro in that it outputs to the current directory by |
| 130 default. The yasm.gyp build patches this file before invoking it to | 132 default. The yasm.gyp build patches this file before invoking it to |
| 131 allow specifying an output directory. | 133 allow specifying an output directory. |
| 132 | 134 |
| 133 10) If all that's is finished, attempt to build....and cross your fingers. | 135 10) If all that's is finished, attempt to build....and cross your fingers. |
| OLD | NEW |