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

Side by Side Diff: Makefile.standalone

Issue 624663002: Introduce model of global initializers in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 2 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
« no previous file with comments | « no previous file | src/IceConverter.h » ('j') | src/IceConverter.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # The following variables will likely need to be modified, depending on where 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 2 # and how you built LLVM & Clang. They can be overridden in a command-line
3 # invocation of make, like: 3 # invocation of make, like:
4 # 4 #
5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> \ 5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> \
6 # LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> ... 6 # LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> ...
7 # 7 #
8 8
9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This
10 # directory should contain the configure script, the include/ and lib/ 10 # directory should contain the configure script, the include/ and lib/
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 -Wno-error=unused-parameter -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 66 -Wno-error=unused-parameter -I$(LIBCXX_INSTALL_PATH)/include/c++/v1
67 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib 67 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib
68 68
69 SRCS= \ 69 SRCS= \
70 assembler.cpp \ 70 assembler.cpp \
71 assembler_ia32.cpp \ 71 assembler_ia32.cpp \
72 IceCfg.cpp \ 72 IceCfg.cpp \
73 IceCfgNode.cpp \ 73 IceCfgNode.cpp \
74 IceConverter.cpp \ 74 IceConverter.cpp \
75 IceGlobalContext.cpp \ 75 IceGlobalContext.cpp \
76 IceGlobalInits.cpp \
76 IceInst.cpp \ 77 IceInst.cpp \
77 IceInstX8632.cpp \ 78 IceInstX8632.cpp \
78 IceIntrinsics.cpp \ 79 IceIntrinsics.cpp \
79 IceLiveness.cpp \ 80 IceLiveness.cpp \
80 IceMemoryRegion.cpp \ 81 IceMemoryRegion.cpp \
81 IceOperand.cpp \ 82 IceOperand.cpp \
82 IceRegAlloc.cpp \ 83 IceRegAlloc.cpp \
83 IceRNG.cpp \ 84 IceRNG.cpp \
84 IceTargetLowering.cpp \ 85 IceTargetLowering.cpp \
85 IceTargetLoweringX8632.cpp \ 86 IceTargetLoweringX8632.cpp \
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 CLANG_FORMAT_DIFF = clang-format-diff.py 136 CLANG_FORMAT_DIFF = clang-format-diff.py
136 else 137 else
137 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py 138 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py
138 endif 139 endif
139 format-diff: 140 format-diff:
140 git diff -U0 `git merge-base HEAD master` | \ 141 git diff -U0 `git merge-base HEAD master` | \
141 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i 142 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i
142 143
143 clean: 144 clean:
144 rm -rf llvm2ice *.o build/ 145 rm -rf llvm2ice *.o build/
OLDNEW
« no previous file with comments | « no previous file | src/IceConverter.h » ('j') | src/IceConverter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698