summary refs log tree commit diff stats
path: root/lib/system/repr.nim
Commit message (Expand)AuthorAgeFilesLines
* gc:destructors progressAndreas Rumpf2019-09-161-1/+1
* fixes #8405: -d:useNimRtl now works even when {.rtl.} procs are used at compi...Timothee Cour2019-07-031-12/+13
* Make repr use 'ptr' for ptr
# 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
im codebase for upcoming parser changesAndreas Rumpf2016-07-151-2/+2 * Fixed reprEnum function on 32-bit systemsRostyslav Dzinko2016-07-051-12/+9 * Rewrote enum sign extension with branchless bit operations (also fixes travis)gmpreussner2016-03-151-8/+8 * Fixed negative enum values not getting stringified.gmpreussner2016-03-141-3/+3 * Fix for #3939 issuecheatfate2016-03-061-0/+1 * bug fix: repr() of sized enums presentation Issue #3864cheatfate2016-02-181-0/+1 * add support for uint32 and uint64 in reprMichał Zieliński2016-01-161-2/+4 * Uint64 to string in pure nim. array[char] to string fixed in vm.Yuriy Glukhov2015-09-141-4/+16 * fixes #3080Araq2015-08-021-1/+4 * fixes #2992Araq2015-06-251-4/+4 * Merge pull request #2768 from gokr/fix-reprAndreas Rumpf2015-06-161-5/+11 |\ | * Tweaked to do commas properlyGöran Krampe2015-05-201-3/+3 | * Fixes #2749, traverse full inheritance for reprRecordGöran Krampe2015-05-201-5/+11 * | Merge branch 'devel' into gogcStefan Talpalaru2015-06-151-18/+19 |\ \ | * | lib/system/g-w - Dropped 'T' from typespdw2015-06-041-18/+19 | |/ * / the Go GC - initial implementationStefan Talpalaru2015-05-311-1/+1 |/ * fixes #2124Araq2015-02-201-2/+4 * fixed minor bugs; cleaned up testsAraq2015-02-121-3/+3 * system files use new identifiersAraq2014-08-231-5/+5 * the big renamefest: first stepsAraq2014-08-221-1/+1 * fixes #1475Araq2014-08-131-2/+2 * distinguish between 'defined' and 'declared'Araq2014-08-111-6/+6 * More human readable `$`(float)katlogic2014-06-151-2/+2 * actors compile againAraq2014-04-201-4/+4 * bugfix: reprEnum for enums with negative valuesAraq2014-03-221-1/+5 * improvements for 'pretty'Araq2013-12-281-1/+1