Commit 3df61eca authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

icc on linux uses static intel libs. addresses #1487

git-svn-id: file:///svn/toku/tokudb@10133 c7de825b-a66e-492c-adef-691d508d4ae1
parent d9c3aa19
...@@ -99,6 +99,11 @@ LIBPORTABILITY_BUNDLE = $(TOKUROOT)lib/libtokuportability.bundle ...@@ -99,6 +99,11 @@ LIBPORTABILITY_BUNDLE = $(TOKUROOT)lib/libtokuportability.bundle
PORTABILITY_HEADERS= $(TOKUROOT)linux PORTABILITY_HEADERS= $(TOKUROOT)linux
ALWAYS_LINK= $(LIBPORTABILITY) -lz -lpthread ALWAYS_LINK= $(LIBPORTABILITY) -lz -lpthread
ifeq ($(CC),icc)
ifeq ($(CYGWIN),)
ALWAYS_LINK += -static-intel
endif
endif
C99 = -std=c99 C99 = -std=c99
W64 = #-Wshorten-64-to-32 W64 = #-Wshorten-64-to-32
BINOUTPUT = -o BINOUTPUT = -o
......
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