summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* added missing nimfix filesAraq2014-10-114-0/+368
|
* backported .deprecated statementAraq2014-10-116-134/+169
|
* documentation updatesAraq2014-10-112-41/+69
|
* minor cleanup for cpuinfoAraq2014-10-111-2/+1
|
* fixes #1551Araq2014-10-112-3/+8
|
* Merge pull request #1559 from lorxu/develAndreas Rumpf2014-10-111-1/+8
|\ | | | | Update cpuinfo.nim to compile in bsd and macosx
| * Update cpuinfo.nimLuis Ricardo2014-10-071-1/+8
|/ | | | sys/types.h needed for macosx and freebsd sys/param.h needed for openbsd and netbsd
* added 'nim*Setjmp' conditional symbolsAraq2014-10-051-0/+2
|
* Merge pull request #1554 from trustable-code/develAndreas Rumpf2014-10-051-0/+5
|\ | | | | Fixed missing color definion
| * Fixed missing color definionSimon Krauter2014-10-051-0/+5
|/
* Merge pull request #1545 from rbehrends/setjmp-perfAndreas Rumpf2014-10-024-6/+30
|\ | | | | Improve setjmp()/longjmp() performance.
| * Use _setjmp()/_longjmp() only on BSD-like systems for now.Reimer Behrends2014-09-271-1/+3
| |
| * Improve setjmp()/longjmp() performance.Reimer Behrends2014-09-254-6/+28
| | | | | | | | | | | | | | | | | | | | | | Exception handling for the C backend used setjmp()/longjmp() unconditionally. However, on POSIX systems, these functions save and restore the signal mask, adding considerable overhead to exception handling, even where no exceptions are involved. The compiler and library now try to use either _setjmp()/_longjmp() or sigsetjmp()/siglongjmp() where possible, marked by the defines "nimRawSetjmp" and "nimSigSetjmp", respectively. The define "nimStdSetjmp" can be used to revert to setjmp()/longjmp() instead.
* | Merge pull request #1549 from Varriount/fix-1529Andreas Rumpf2014-10-021-2/+9
|\ \ | | | | | | Fixes #1529
| * | Fixes #1529Clay Sweetser2014-10-011-2/+9
|/ /
* | Updated Version NumberVarriount2014-09-281-1/+1
| |
* | Disable git hashing in the version commandVarriount2014-09-281-2/+2
| |
* | Merge pull request #1541 from rbehrends/mkdir-permsAndreas Rumpf2014-09-231-2/+2
|\ \ | |/ |/| Fix permissions for createDir() on Unix systems.
| * Fix permissions for createDir() on Unix systems.Reimer Behrends2014-09-221-2/+2
|/ | | | | Permissions were set to 0o711 by default; they should be 0o777, with umask being responsible for restricting permissions further.
* Merge pull request #1534 from rbehrends/fix-importc-varAndreas Rumpf2014-09-191-0/+4
|\ | | | | Avoid unnecessary #include triggered by importc vars.
| * Avoid unnecessary #include triggered by importc vars.Reimer Behrends2014-09-191-0/+4
|/ | | | | | | | | | | | | | | | | When a C variable or macro is imported via an {.importc.} var or let statement, but no definition is needed and the variable does not have an initializer part, then there is also no need to generate an #include for the associated header until and unless the variable is actually used. The header is already generated upon use, but unnecessarily also when the variable is defined. This is an issue with the posix module in particular, where a lot of unnecessary header files are being included because relevant constants are defined via importc vars, and those header files may not even be available on a given system. This patch omits the generation of the #include directive for those definitions where they aren't needed.
* Merge pull request #1507 from idlewan/postgresqlAndreas Rumpf2014-09-192-28/+86
|\ | | | | Add postgresql prepared queries
| * Add postgresql prepared queries and stop relying on string formattingErwan Ameil2014-08-292-28/+86
| | | | | | | | for sql parameter passing
* | Merge pull request #1533 from rbehrends/fix-boehmgc-interfaceAndreas Rumpf2014-09-181-10/+18
|\ \ | | | | | | Various fixes to how the Boehm GC's interface.
| * | Various fixes to how the Boehm GC's interface.Reimer Behrends2014-09-181-10/+18
| | | | | | | | | | | | | | | | | | | | | The Boehm GC interface did not define the getXXXSharedMem() functions that were needed for compilation with --threads:on. It also used `ppointer` instead of `PPointer`, so it failed to compile with --cs:partial.
* | | Merge pull request #1532 from PavelVozenilek/develDominik Picheta2014-09-181-1/+1
|\ \ \ | |/ / |/| | more precise word
| * | more precise wordPavelVozenilek2014-09-181-1/+1
| | |
* | | manual merge of #1526Araq2014-09-111-1/+1
| | |
* | | fixes #665Araq2014-09-112-1/+2
| | |
* | | fixes #1067Araq2014-09-111-0/+10
| | |
* | | mostly fixes #1339Araq2014-09-112-3/+9
| | |
* | | fixes #1366Araq2014-09-111-1/+1
| | |
* | | Threads work againAraq2014-09-111-32/+46
| | |
* | | fixes #903, fixess #1513Araq2014-09-111-6/+14
| | |
* | | fixes #1511Araq2014-09-111-13/+16
| | |
* | | minor bugfix for void .compileTime procsAraq2014-09-111-1/+1
| | |
* | | fixes #1444Araq2014-09-116-9/+165
| | |
* | | Merge pull request #1524 from rbehrends/fix-staticexec2Dominik Picheta2014-09-101-1/+1
|\ \ \ | | | | | | | | Properly handle staticExec() generating large output.
| * | | Properly handle staticExec() generating large output.Reimer Behrends2014-09-101-1/+1
|/ / / | | | | | | | | | | | | | | | A staticExec() invocation that generated more than the internal buffer size worth of output blocked because the compiler waited for the process to terminate before reading the output.
* | | Merge pull request #1404 from def-/strutils-countAndreas Rumpf2014-09-051-0/+35
|\ \ \ | | | | | | | | Add count procedures to strutils
| * | | overlapping as a parameter for count insteaddef2014-07-281-17/+9
| | | |
| * | | Add count procedures to strutilsdef2014-07-231-0/+43
| | | |
* | | | Merge pull request #1455 from gradha/pr_parallelize_doc_buildAndreas Rumpf2014-09-052-9/+54
|\ \ \ \ | | | | | | | | | | Parallelizes documentation building.
| * | | | Adds --parallelBuild to koch web and automatic reruns. Refs #1455.Grzegorz Adam Hankiewicz2014-08-082-4/+34
| | | | |
| * | | | Parallelizes documentation building.Grzegorz Adam Hankiewicz2014-08-061-9/+24
| | | | |
* | | | | Merge pull request #1514 from fuzzthink/develSimon Hafner2014-09-021-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Pointer -> pointer to fix compile error using --cs:partial
| * | | | | Pointer -> pointer to fix compile error using --cs:partialfuzzthink2014-09-021-2/+2
| | | | | |
* | | | | | Merge pull request #1509 from idlewan/cookiesAndreas Rumpf2014-09-011-6/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | Secure and HttpOnly cookies
| * | | | | | Secure and HttpOnly cookiesErwan Ameil2014-08-301-6/+9
| | | | | | |
* | | | | | | Merge pull request #1508 from idlewan/zmqAndreas Rumpf2014-09-012-25/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Remove outdated ZeroMQ examples (zmq has been moved out of the stdlib)