Overview
Comment: | ChromeOS: Updated to only enable debugging symbols in a debugging build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 8668b85846c26d813f9468c92fc94ab55806df2d |
User & Date: | rkeene on 2016-02-26 18:21:32 |
Original Comment: | Updated to only enable debugging symbols in a debugging build |
Other Links: | manifest | tags |
Context
2016-02-26
| ||
18:22 | ChromeOS: Include icon in the zip file check-in: fa44d4ac0f user: rkeene tags: trunk | |
18:21 | ChromeOS: Updated to only enable debugging symbols in a debugging build check-in: 8668b85846 user: rkeene tags: trunk | |
18:20 | ChromeOS: Fixed issue with including signed data in the reply check-in: c27bb81788 user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [a0a70506fb] to [9ef299ca9a].
3 3 AR = pnacl-ar 4 4 RANLIB = pnacl-ranlib 5 5 FINALIZE = pnacl-finalize 6 6 7 7 CACKEY_LIBS = -Llib -lcackey -lz 8 8 PCSC_LIBS = -Llib -lpcsc -L${NACL_SDK_ROOT}/lib/pnacl/Release -lppapi -lppapi_cpp 9 9 LIBS = $(CACKEY_LIBS) $(PCSC_LIBS) 10 -CFLAGS = -Wall -g3 -ggdb3 -I${NACL_SDK_ROOT}/include -I../../pkcs11 -Iinclude/PCSC 10 +CFLAGS = -Wall -I${NACL_SDK_ROOT}/include -I../../pkcs11 -Iinclude/PCSC 11 11 CXXFLAGS = $(CFLAGS) -std=gnu++11 12 -LDFLAGS = -g3 -ggdb3 13 12 14 13 CACKEY_DEBUG = 0 15 14 ifeq (1,$(CACKEY_DEBUG)) 16 15 CACKEY_LIBNAME = libcackey_g 17 16 CACKEY_EXECUTABLES = cackey.pexe cackey.bc 17 +CFLAGS += -g3 -ggdb3 18 +CXXFLAGS += -g3 -ggdb3 19 +LDFLAGS += -g3 -ggdb3 18 20 else 19 21 CACKEY_LIBNAME = libcackey 20 22 CACKEY_EXECUTABLES = cackey.pexe 21 23 endif 22 24 23 25 PATH += :${NACL_SDK_ROOT}/toolchain/linux_pnacl/bin 24 26 export PATH