Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. CC = g++
  2. HADOOP_INSTALL = <Path of hadoop in CDH-5.8>
  3. INC = -I$(HADOOP_INSTALL)/include
  4. LIBS = -L$(HADOOP_INSTALL)/lib/native -lhadooppipes -lhadooputils -lpthread -lssl -lcrypto
  5. CPPFLAGS = $(INC) -Wall -g -O2
  6.  
  7. wordcount: wordcount.cpp
  8. $(CC) $(CPPFLAGS) -o $@ $< $(LIBS)
  9.  
  10. #include "Pipes.hh"
  11. #include "TemplateFactory.hh"
  12. #include "SerialUtils.hh"
  13. #include "StringUtils.hh"
  14. . . .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement