Commit f1c9f9dc authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

close[t:3657] DEBUG=0 and DEBUG=1 now work. Fix #3657.

git-svn-id: file:///svn/toku/tokudb@32585 c7de825b-a66e-492c-adef-691d508d4ae1
parent 3e7ee942
......@@ -166,7 +166,12 @@ PORTABILITY_HEADERS= $(TOKUROOT)$(SYSTEM)
ALWAYS_LINK= -lz -lpthread
ifeq ($(CC),icc)
# needed for things like intel_fast_memset(), intel_sse2_strlen()
ALWAYS_LINK+=-Bstatic -lirc -Bdynamic -lstdc++
ifeq ($(DEBUG),0)
IRCSTATIC = -Bstatic
else
IRCSTATIC =
endif
ALWAYS_LINK+=$(IRCSTATIC) -lirc -Bdynamic -lstdc++
endif
C99 = -std=c99
W64 = #-Wshorten-64-to-32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment