summary refs log tree commit diff stats
path: root/lib/system.nim
Commit message (Expand)AuthorAgeFilesLines
...
* added system.typeof operation; fixes #9093Araq2018-10-241-0/+9
* system.nim deprecate 'getRefcount'; refs #2839, refs #3713Araq2018-10-151-3/+6
* system.nim: fixes typoAraq20
# dwm version
VERSION = 4.4

# Customize below to fit your system

# additional layouts beside floating
SRC = tile.c

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -s ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc
mit/lib/system.nim?h=devel&id=b5730ec01f02e542eb06161430aa5a7c2ede775f'>system.nim: fix doc comment for 'once'
Andreas Rumpf2018-09-071-6/+6
|/
* Automatic deref for everything but pointers in asm/emit (#8891)LemonBoy2018-09-071-3/+3
* fix items for cstring for the JS target; makes tests green againAraq2018-09-031-4/+11
* deprecate system.onRaise; fixes #1652Araq2018-09-031-1/+4
* fixes #8847Araq2018-09-031-1/+1
* introduce precise string '[]', '[]=' accessors; fixes #8049 (#8817)Andreas Rumpf2018-08-301-0/+9
* Deprecate xlen() for strings and seqs (#8782)awr12018-08-261-2/+7
* doAssert, assert now print full path of failing line on error (#8555)Timothee Cour2018-08-251-15/+13
* fixes merge conflictAraq2018-08-231-8/+8
|\
| * Fixes #8719 (onFailedAssert now works for doAssert) (#8731)awr12018-08-231-8/+8
| * exploit nil seqs for performance (#8688)Andreas Rumpf2018-08-201-4/+1
* | even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-2/+11
* | make tests green againAraq2018-08-211-0/+1
* | fixes merge conflictAndreas Rumpf2018-08-191-93/+92
|\ \
| * | changes $ for seqs to never produce 'nil'Andreas Rumpf2018-08-181-4/+1
| |/
| * Genode fixes (#8501)Emery Hemingway2018-08-161-2/+7
| * Merge branch 'devel' into araq-miscAndreas Rumpf2018-08-161-1/+1
| |\
| | * Haiku support for Nim (#8542)alaviss2018-08-141-1/+1
| * | implement the --nilseqs switch properlyAndreas Rumpf2018-08-151-2/+3
| * | changes how the now illegal 'string == nil' comparison is detectedAndreas Rumpf2018-08-151-0/+4
| * | make tests green againAraq2018-08-131-2/+6
| * | WIP: disallow 'nil' for strings and seqsAndreas Rumpf2018-08-131-6/+15
| * | rename SystemError to CatchableError in order to avoid breaking Nimble and pr...Araq2018-08-101-4/+4
| * | rework the exception hierarchy; refs #8363Andreas Rumpf2018-08-101-71/+33
| * | deprecate isNil for strings and seqsAraq2018-08-081-4/+4
| |/
| * fixes #6255, add `system.ashr` arithmetic right shift (#8547)andri lim2018-08-071-0/+17
| * Stricter signature for countdown/countup (#8549)Oscar NihlgÄrd2018-08-071-3/+3
* | make at least bootstrapping workAraq2018-08-051-4/+6
|\|