mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
misc fixes: build_all.sh, changelog (#17601)
* fix a bug in build_all.sh: $@ => "$@" * remove getSocket from changelog following #17587 * remove unused import
This commit is contained in:
@@ -42,7 +42,7 @@ build_nim_csources(){
|
||||
echo_run cp bin/nim $nim_csources
|
||||
}
|
||||
|
||||
[ -f $nim_csources ] || echo_run build_nim_csources $@
|
||||
[ -f $nim_csources ] || echo_run build_nim_csources "$@"
|
||||
|
||||
# Note: if fails, may need to `cd csources && git pull`
|
||||
echo_run bin/nim c --skipUserCfg --skipParentCfg koch
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
- Added `asyncdispatch.activeDescriptors` that returns the number of currently
|
||||
active async event handles/file descriptors.
|
||||
|
||||
- Added to `asynchttpserver` `getPort` and `getSocket`.
|
||||
- Added `getPort` to `asynchttpserver`.
|
||||
|
||||
- `--gc:orc` is now 10% faster than previously for common workloads. If
|
||||
you have trouble with its changed behavior, compile with `-d:nimOldOrc`.
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
## This module contains support code for new-styled error
|
||||
## handling via an `nkError` node kind.
|
||||
|
||||
import ast, renderer, options, lineinfos, strutils, types
|
||||
import ast, renderer, options, strutils, types
|
||||
|
||||
type
|
||||
ErrorKind* = enum ## expand as you need.
|
||||
|
||||
Reference in New Issue
Block a user