2007-07-08 13:45:47 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 0.6.1:
This release adds SSE4.1 and SSE4.2 instruction support, a .set
directive in the GAS parser, and allowing Mach-O custom sections.
Bugfixes include fixes to AMD Pacifica (SVM) instructions, absolute
section handling, RIP-relative cross-section references in bin
output, and many others.
|
2007-05-19 23:42:54 by Klaus Heinz | Files touched by this commit (1) |
Log message:
Package supports installation to DESTDIR.
|
2007-03-08 20:09:28 by Thomas Klausner | Files touched by this commit (3) |
Log message:
Update to 0.6.0:
New features (compared to 0.5.0):
* Brand-new "virtual" multi-pass optimizer that automatically
generates much smaller code for jumps and immediates.
* Support for Mach-O object format used in MacOS X, including
both the 32-bit (x86) and 64-bit (AMD64) versions (contributed
by Henryk Richter).
* Support for structured exception handling on Win64.
* Support for RDOFF2 (.rdf) object format.
* Support for STRICT keyword in NASM syntax.
* Rewritten NASM and GAS parsers (now recursive descent rather
than Bison-based).
* Absolute / FAR location bugfixes.
* Yasm no longer defaults to reading from standard input if no
files are specified; standard input can be specified with "-".
* Many other bugfixes.
|
2006-08-12 23:05:06 by Thomas Klausner | Files touched by this commit (6) |
Log message:
Update to 0.5.0, provided by the new maintainer, Shaun Amott, in PR 34190.
New features in this release (compared to 0.5.0rc2):
- Support for arithmetic on single-character constants.
- Support for OUTPUT_FORMAT as an alias for YASM_OBJFMT.
- A couple of other bugfixes.
New features in this release (compared to 0.5.0rc1):
- Support for CodeView 8.0 source debugging (as used by Visual Studio
2005).
- Fixed -I support to properly handle relative paths (now the search
pattern is essentially identical to most C compilers). This change is
backwards incompatible (to both NASM and earlier Yasm versions), but
is much more consistent.
- Standard macros that provide version information: __YASM_MAJOR__,
__YASM_MINOR__, __YASM_SUBMINOR__, __YASM_BUILD__, __YASM_VERSION_ID__
and __YASM_VER__.
New features in this release (compared to 0.4.0) include:
- Aliases for AMD64 object formats: "win64" and "elf64" (these
automatically set the machine to "amd64").
- "x64" alias for Win64 object format (for easier use with Visual
Studio).
- DWARF2 debugging format (enable with "-g dwarf2").
- GAS parser good enough to take GCC output for both AMD64 and 32-bit
x86 (including DWARF2 debug information).
- Dozens of bugfixes in x86 and AMD64 support.
- Specifying "amd64" as the machine (or using a 64-bit object format)
automatically sets BITS 64.
Known issues with this release include:
- List output is buggy and often outright wrong.
- The optimizer is a very basic 2-pass style and generates inefficient
(large) code at times.
- The binary object format does not yet support sections other than
.text, .bss, and .data, unlike newer versions of NASM (see Trac bug
#71).
|
2006-04-13 20:27:24 by Johnny C. Lam | Files touched by this commit (6) |
Log message:
BROKEN_GETTEXT_DETECTION already defaults to "no".
|
2006-04-13 20:23:45 by Johnny C. Lam | Files touched by this commit (292) |
Log message:
BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace with
USE_TOOLS+=msgfmt.
|
2006-03-04 22:31:14 by Johnny C. Lam | Files touched by this commit (2257) |
Log message:
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to \
"pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
|
2006-02-06 00:11:50 by Joerg Sonnenberger | Files touched by this commit (4082) |
Log message:
Recursive revision bump / recommended bump for gettext ABI change.
|
2005-12-20 12:17:28 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Unbreak gettext broken by BROKEN_GETTEXT_DETECTION.
|
2005-12-04 21:00:01 by Krister Walfridsson | Files touched by this commit (6) |
Log message:
Update yasm to 0.4.0 using patches provided by FUKAUMI Naoki in PR pkg/30445.
New features since 0.2.2:
* ELF AMD64 and 32-bit shared object support (using the NASM notation
"WRT ..got", etc).
* STABS debugging format (enable with "-g stabs").
* NASM-like list format.
* XDF object format (64-bit basic format, similar in spirit to NASM's RDF).
* Dozens of bugfixes in x86 and AMD64 support.
* Numerous cross-platform build fixes.
* No perl dependencies for standard build.
* New man pages: yasm(1) and yasm_arch(7).
* Full support for ELF, including support for both AMD64 and 32-bit
x86 targets; note: for AMD64 output, the machine type must be set
to "amd64" using the "-m" command line option, e.g.
"yasm -m amd64 -f elf test.asm".
* Full warnings for integer overflow.
* Full support for AMD64 RIP-relative addressing; the two forms supported
are "[rip+val]" (direct index) and "[sym wrt rip]" \
(relocated relative).
* Many AMD64 bugfixes including correct operand size handling (and o64
override); thanks to the many bug reports to help improve YASM in this area!
|