Changes:
* Documentation comments have been added or improved in bigfile.s7i,
char.s7i, clib_file.s7i, complex.s7i, external_file.s7i, file.s7i,
float.s7i, hash.s7i, integer.s7i, shell.s7i, string.s7i, utf16.s7i,
osfiles.s7i, rational.s7i, arrlib.c, blnlib.c, bstlib.c, arr_rtl.c,
big_gmp.c, big_rtl.c, bst_rtl.c, chrlib.c, chr_rtl.c, cmdlib.c,
cmd_rtl.c, fillib.c, fil_rtl.c, fltlib.c, flt_rtl.c, hshlib.c,
hsh_rtl.c, int_rtl.c, pol_sel.c, pol_unx.c, setlib.c, set_rtl.c,
strlib.c, str_rtl.c.
* The functions lower and upper in string.s7i and char.s7i have been
improved to use the default Unicode case mapping. In other words:
conversions to lower respectively upper case works for all Unicode
characters, which have a case mapping. Characters without case
mapping are left unchanged. The mapping is independend from the
locale. Individual character case mappings cannot be reversed,
because some characters have multiple characters that map to them.
* In the library deflate.s7i the performance of the deflate
compression has been improved by a factor between 5 and 10.
* The performance of the functions str_cmp, str_range and str_substr
in strlib.c has been improved.
* The performance of the functions strCompare, strRangeSlice,
strRange, strSubstrSlice and strSubstr in str_rtl.c has been
improved.
* Tests for the string functions compare, lower and upper and for the
index operations head, tail, range and substring have been added to
chkstr.sd7.
* The definition of the macro arrayMaxPos in common.h has been
improved and usages of the macro have been added to arrlib.c and
arr_rtl.c.
* The compiler has been improved to support the actions HSH_IDX2 and
HSH_UPDATE.
* The compiler has been improved to inline code for the actions
STR_HASHCODE, STR_RANGE and STR_SUBSTR.
* The function intStrToBuffer has been added to int_rtl.c. This
function allows conversions from integer to string, without
memory allocation.
* The compiler has been improved to take advantage of the function
intStrToBuffer.
* The functions getGenericValue, getGenericValueToResultExpr,
getTempVariable, beginCastGeneric, endCastGeneric,
beginCastGenericToResultExpr and endCastGenericToResultExpr have
been added to the compiler.
* The functions hsh_idx2 and hsh_update have been added to hshlib.c.
* The functions hshIdxAddr2 and hshUpdate have been added to
hsh_rtl.c
* The macro hashCode has been defined in str_rtl.h and used in
str_rtl.c (function strHashCode) and strlib.c (function
str_hashcode).
* The program chkccomp.c was improved to write a definition of the
macro INLINE to version.h
* The deprecated function 'read_dir' has been removed from the
library "osfiles.s7i". The replacement of 'read_dir' is 'readDir'.
* The functions arrHeadTemp, arrRangeTemp and arrSubarrTemp in
arr_rtl.c have been improved.
bootstrap of GCC, as opposed to just running a simple build.
Bootstrapping is actually the default upstream, we disable it
by default for the stable flavors of GCC since that is a huge
win in terms of build time of the port. No change in default
behavior for this port.
(When bootstrapping, use bootstrap-lean instead of default/vanilla
bootstrap to save on disk space.)
Remove redundant setting of DISTNAME.
Changes:
- Use github directly instead of my local server.
- Rework WRKSRC/Makefile to allow simplifying port Makefile and drop the
dependency on gmake.
- Drop README, refer to website instead.
- Add a simple BF generator.
Note that the version reported by the bf2c binary is still 1.2.5, as it
did not change at all during this update.
identify it rather than port versions.
Remove the broken and obviously unused regression-test target along with
the obsolute dependency on dejagnu.
Reported by: decke
install primarily in ${PREFIX}/llvm33 with wrapper scripts in
${PREFIX}/bin named clang33, llc33, etc.
In an additional change, the clang static analyzer's python wrapper and
web bits are not installed.
Release notes: http://www.tcl.tk/software/tcltk/8.4.html
This is the twentieth and *FINAL* patch release of Tcl/Tk 8.4.
With this release, support for Tcl/Tk 8.4 comes to an end.
These ports are going to be deprecated soon. Please use 8.5 or 8.6.
Changes:
* The implementation of the type integer has been changed to use a
64-bit value.
* Documentation comments have been added to bigint.s7i, integer.s7i,
string.s7i, arr_rtl.c, big_gmp.c, biglib.c, big_rtl.c, flt_rtl.c,
intlib.c, int_rtl.c, set_rtl.c and str_rtl.c.
* The new library bin32.s7i, which defines bit operations for 32-bit
values, has been added.
* The new library crc32.s7i, which supports the CRC-32 cyclic
redundancy check, has been added.
* The new library deflate.s7i, which supports the deflate compression
algorithm, has been added.
* The library binary.s7i has been renamed to bytedata.s7i. The
functions get_asciiz, get_uint16_le, get_uint32_le, get_uint16_be
and get_uint32_be have been renamed to getAsciiz, getUInt16Le,
getUInt32Le, getUInt16Be and getUInt32Be respectively. Definitions
of the functions int16AsTwoBytesLe, int32AsFourBytesLe,
int16AsTwoBytesBe and int32AsFourBytesBe have been added.
* The functions getBitLe, getBitsLe, getNonCompressedBlock,
getLiteralOrLength, getDistance, decodeLength, decodeDistance,
decodeFixedHuffmanCodes, getHuffmanValue, computeConversionTable,
decodeDynamicHuffmanCodes, processCompressedBlock and inflate have
been moved from gzip.s7i to the new library inflate.s7i.
* The functions gzip, openGzipFile, close and write have been added
to the library gzip.s7i.
* The functions 'name' and 'path' have been added to the library
progs.s7i.
* The function openStrifile has been added to strifile.s7i.
* The library tar.s7i and the example program tar7.sd7 have been
improved to allow the creation of compressed archives.
* The compiler has been improved to support the actions BIG_CONV,
BIN_AND, BIN_OR, BIN_XOR, INT_AND, INT_OR, INT_XOR, INT_URSHIFT,
INT_URSHIFT_ASSIGN, PRG_OWN_NAME and PRG_OWN_PATH.
* Optional checks for integer shift operations have been added to
the compiler.
* The function bigFromInt64 and bigToInt64 in big_gmp.c have been
improved.
* Several functions in big_gmp.c have been improved to free temporary
values with mpz_clear().
* The function big_conv() has been added to biglib.c.
* The functions drw_image and drwRtlImage have been improved.
* The functions drwImage in drw_win.c and drw_x11.c have been
improved.
* The meaning of the actions PRG_NAME and PRG_PATH has changed. The
new actions PRG_OWN_NAME and PRG_OWN_PATH are used as replacement.
* The functions strRPos2, strRIPos2 and strRepl2 have been added to
str_rtl.c. This functions use a modified Boyer–Moore string search
algorithm.
* Usages of the macro arraySize have been added to drwlib.c,
drw_rtl.c, libpath.c and prg_comp.c.
* The macro arrayMaxPos has been defined in common.h and used in
arrlib.c and arr_rtl.c.
- Track the change in build location (s/2.0.2/2.0.x/g)
- Only tested on amd64 as this is only a point releas
- If SANDBOX fails to build, install pypy-2.0.2 and try again
ChangeLog:
* Fix crash in the JIT when calling external C functions in multithreaded context.
Approved by: eadler,bdrewery (mentors, implicit)
Introduce a new option BOOTSTRAP that allows switching between a
full bootstrap of GCC and just running a simple build.
Bootstrapping is the default upstream, and for very stable and old
flavors of GCC we disable this by default since that is a huge win
in terms of build time of the port. No change in default behavior
for this port, for the time being we continue to bootstrap.