Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: Makefile

Issue 205613002: Initial skeleton of Subzero. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« IceCfg.h ('K') | « LICENSE ('k') | README.rst » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # The following variables will likely need to be modified, depending on where
2 # and how you built LLVM & Clang. They can be overridden in a command-line
3 # invocation of make, like:
4 #
5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> ...
6 #
7
8 # LLVM_SRC_PATH is the path to the root of the checked out source code. This
9 # directory should contain the configure script, the include/ and lib/
10 # directories of LLVM, Clang in tools/clang/, etc.
11 # Alternatively, if you're building vs. a binary download of LLVM, then
12 # LLVM_SRC_PATH can point to the main untarred directory.
13 LLVM_SRC_PATH ?= ../llvm
14
15 # LLVM_BIN_PATH is the directory where binaries are placed by the LLVM build
16 # process. It should contain the tools like opt, llc and clang. The default
17 # reflects a debug build with autotools (configure & make).
18 LLVM_BIN_PATH ?= $(shell readlink -e ../../out/llvm_i686_linux_work/Release+Asse rts/bin)
19
20 $(info -----------------------------------------------)
21 $(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH))
22 $(info Using LLVM_BIN_PATH = $(LLVM_BIN_PATH))
23 $(info -----------------------------------------------)
24
25 LLVM_CXXFLAGS := `$(LLVM_BIN_PATH)/llvm-config --cxxflags`
26 LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs`
27
28 # It's recommended that CXX matches the compiler you used to build LLVM itself.
29 OPTLEVEL := -O0
30 CXX := g++
31 CXXFLAGS := -Wall -Werror -fno-rtti $(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32
32 LDFLAGS := -m32
33
34 OBJS= \
35 IceCfg.o \
36 IceCfgNode.o \
37 IceInst.o \
38 IceOperand.o \
39 IceTypes.o
40
41 # Keep all the first target so it's the default.
42 all: llvm2ice
43
44 .PHONY: all
45
46 llvm2ice: $(OBJS) llvm2ice.o
47 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) -ldl
48
49 # Compiling driver files (with a 'main' function) separately, so they don't
50 # get included in OBJS.
51 llvm2ice.o: llvm2ice.cpp *.h
52 $(CXX) -c $(CXXFLAGS) $< -o $@
53
54 # TODO: Be more precise than "*.h" here and elsewhere.
55 $(OBJS): %.o: %.cpp *.h
56 $(CXX) -c $(CXXFLAGS) $< -o $@
57
58 check: llvm2ice
59 LLVM_BIN_PATH=$(LLVM_BIN_PATH) $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tes ts_lit
60
61 # TODO: Fix the use of wildcards.
62 format:
63 $(LLVM_BIN_PATH)/clang-format -style=LLVM -i Ice*.h Ice*.cpp llvm2ice.cp p
64
65 clean:
66 rm -f llvm2ice *.o
OLDNEW
« IceCfg.h ('K') | « LICENSE ('k') | README.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698