Overview
Comment: | Enabled exit path by default in debug mode |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
76965f13c9ebd47e08f16992dc7b9f98 |
User & Date: | rkeene on 2014-11-14 17:25:21 |
Other Links: | manifest | tags |
Context
2014-11-14
| ||
17:26 | Made exit path ifdef more consistent check-in: 2bb04fd22b user: rkeene tags: trunk | |
17:25 | Enabled exit path by default in debug mode check-in: 76965f13c9 user: rkeene tags: trunk | |
17:25 | Made an optional exit path and removed decrementing of reference counters check-in: ec17efd4bb user: rkeene tags: trunk | |
Changes
Modified Makefile from [4274fa3689] to [7ed3cc42a9].
1 2 3 | CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) | | | 1 2 3 4 5 6 7 8 9 10 11 | CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 CFLAGS = $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_DEBUG) LDFLAGS = $(TCL_LDFLAGS) FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) LIBS = $(FUSE_LIBS) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) |
︙ | ︙ |