OLD | NEW |
---|---|
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> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ | 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ |
6 # PNACL_BIN_PATH=<path> ... | 6 # PNACL_BIN_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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
172 | 172 |
173 ifdef LINUX_MALLOC_PROFILE | 173 ifdef LINUX_MALLOC_PROFILE |
174 OBJDIR := $(OBJDIR)+MalProf | 174 OBJDIR := $(OBJDIR)+MalProf |
175 CXX_EXTRA += -DALLOW_LINUX_MALLOC_PROFILE=1 | 175 CXX_EXTRA += -DALLOW_LINUX_MALLOC_PROFILE=1 |
176 LD_EXTRA += -Wl,--export-dynamic | 176 LD_EXTRA += -Wl,--export-dynamic |
177 endif | 177 endif |
178 | 178 |
179 SB_OBJDIR := $(OBJDIR)+Sandboxed | 179 SB_OBJDIR := $(OBJDIR)+Sandboxed |
180 SBB_OBJDIR := $(OBJDIR)+SandboxedBrowser | 180 SBB_OBJDIR := $(OBJDIR)+SandboxedBrowser |
181 | 181 |
182 V8_DIR = ../../../../v8 | |
183 V8_CXXFLAGS := -I$(V8_DIR) | |
184 | |
182 $(info -----------------------------------------------) | 185 $(info -----------------------------------------------) |
183 $(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH)) | 186 $(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH)) |
184 $(info Using SB_LLVM_PATH = $(SB_LLVM_PATH)) | 187 $(info Using SB_LLVM_PATH = $(SB_LLVM_PATH)) |
185 $(info Using NACL_ROOT = $(NACL_ROOT)) | 188 $(info Using NACL_ROOT = $(NACL_ROOT)) |
186 $(info Using TOOLCHAIN_ROOT = $(TOOLCHAIN_ROOT)) | 189 $(info Using TOOLCHAIN_ROOT = $(TOOLCHAIN_ROOT)) |
187 $(info Using PNACL_TOOLCHAIN_ROOT = $(PNACL_TOOLCHAIN_ROOT)) | 190 $(info Using PNACL_TOOLCHAIN_ROOT = $(PNACL_TOOLCHAIN_ROOT)) |
188 $(info Using PNACL_BIN_PATH = $(PNACL_BIN_PATH)) | 191 $(info Using PNACL_BIN_PATH = $(PNACL_BIN_PATH)) |
189 $(info Using CLANG_PATH = $(CLANG_PATH)) | 192 $(info Using CLANG_PATH = $(CLANG_PATH)) |
190 $(info Using LIBCXX_INSTALL_PATH = $(LIBCXX_INSTALL_PATH)) | 193 $(info Using LIBCXX_INSTALL_PATH = $(LIBCXX_INSTALL_PATH)) |
191 $(info Using HOST_ARCH = $(HOST_ARCH)) | 194 $(info Using HOST_ARCH = $(HOST_ARCH)) |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
244 -Wcast-qual \ | 247 -Wcast-qual \ |
245 -Wno-comment \ | 248 -Wno-comment \ |
246 -Wno-long-long \ | 249 -Wno-long-long \ |
247 -Wno-maybe-uninitialized \ | 250 -Wno-maybe-uninitialized \ |
248 -Wno-missing-field-initializers \ | 251 -Wno-missing-field-initializers \ |
249 -Wno-unused-parameter \ | 252 -Wno-unused-parameter \ |
250 -Wwrite-strings | 253 -Wwrite-strings |
251 OBJDIR := $(OBJDIR)+Gplusplus | 254 OBJDIR := $(OBJDIR)+Gplusplus |
252 endif | 255 endif |
253 | 256 |
254 BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -Werror -fno-rtti \ | 257 BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -fno-rtti \ |
255 -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \ | 258 -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \ |
256 $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD | 259 $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD |
257 | 260 |
261 ifndef WASM | |
262 # The WASM code inherits a lot of V8 code, which does not compile with | |
263 # -Werror. | |
264 BASE_CXXFLAGS += -Werror | |
265 endif | |
266 | |
258 CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \ | 267 CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \ |
259 $(STDLIB_FLAGS) | 268 $(STDLIB_FLAGS) |
260 SB_CXXFLAGS := $(SB_LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(BASE_CXX_DEFINES) \ | 269 SB_CXXFLAGS := $(SB_LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(BASE_CXX_DEFINES) \ |
261 -Wno-unknown-pragmas -I$(NACL_ROOT) -I$(NACL_ROOT)/.. | 270 -Wno-unknown-pragmas -I$(NACL_ROOT) -I$(NACL_ROOT)/.. |
262 | 271 |
272 ifdef WASM | |
273 CXXFLAGS += $(V8_CXXFLAGS) -DSUBZERO_WASM | |
Jim Stichnoth
2016/03/29 17:49:56
Follow the pattern above where you also modify OBJ
Eric Holk
2016/03/29 22:58:07
Done, assuming I understood the comment correctly.
| |
274 endif | |
275 | |
263 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections \ | 276 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections \ |
264 $(LD_EXTRA) $(STDLIB_FLAGS) | 277 $(LD_EXTRA) $(STDLIB_FLAGS) |
265 # Not specifying -Wl,--gc-sections but instead doing bitcode linking GC w/ LTO. | 278 # Not specifying -Wl,--gc-sections but instead doing bitcode linking GC w/ LTO. |
266 SB_LDFLAGS := $(LINKOPTLEVEL) $(LD_EXTRA) | 279 SB_LDFLAGS := $(LINKOPTLEVEL) $(LD_EXTRA) |
267 | 280 |
268 # List the target-specific source files first, which generally take longer to | 281 # List the target-specific source files first, which generally take longer to |
269 # compile, in the hope of improving parallel build time. | 282 # compile, in the hope of improving parallel build time. |
270 SRCS = \ | 283 SRCS = \ |
271 IceAssemblerARM32.cpp \ | 284 IceAssemblerARM32.cpp \ |
272 IceInstARM32.cpp \ | 285 IceInstARM32.cpp \ |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
308 LinuxMallocProfiling.cpp \ | 321 LinuxMallocProfiling.cpp \ |
309 main.cpp \ | 322 main.cpp \ |
310 PNaClTranslator.cpp | 323 PNaClTranslator.cpp |
311 | 324 |
312 ifndef MINIMAL | 325 ifndef MINIMAL |
313 SRCS += \ | 326 SRCS += \ |
314 IceConverter.cpp \ | 327 IceConverter.cpp \ |
315 IceTypeConverter.cpp | 328 IceTypeConverter.cpp |
316 endif | 329 endif |
317 | 330 |
331 ifdef WASM | |
332 SRCS += \ | |
333 WasmTranslator.cpp | |
334 endif | |
335 | |
318 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) | 336 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
319 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) | 337 SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS)) |
320 SBB_OBJS=$(patsubst %.cpp, $(SBB_OBJDIR)/%.o, $(SRCS)) | 338 SBB_OBJS=$(patsubst %.cpp, $(SBB_OBJDIR)/%.o, $(SRCS)) |
321 | 339 |
322 UNITTEST_SRCS = \ | 340 UNITTEST_SRCS = \ |
323 BitcodeMunge.cpp \ | 341 BitcodeMunge.cpp \ |
324 IceELFSectionTest.cpp \ | 342 IceELFSectionTest.cpp \ |
325 IceParseInstsTest.cpp | 343 IceParseInstsTest.cpp |
326 | 344 |
327 # The X86 assembler tests take too long to compile. Given how infrequently the | 345 # The X86 assembler tests take too long to compile. Given how infrequently the |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
385 | 403 |
386 %.pexe : %.nonfinal.pexe | 404 %.pexe : %.nonfinal.pexe |
387 $(SB_FINALIZE) -o $@ $< | 405 $(SB_FINALIZE) -o $@ $< |
388 | 406 |
389 .PHONY: all compile_only make_symlink runtime bloat sb docs help \ | 407 .PHONY: all compile_only make_symlink runtime bloat sb docs help \ |
390 help-check-lit help-check-xtest exists-nonsfi-x8632 \ | 408 help-check-lit help-check-xtest exists-nonsfi-x8632 \ |
391 exists-nonsfi-arm32 exists-sbtc exists-spec | 409 exists-nonsfi-arm32 exists-sbtc exists-spec |
392 | 410 |
393 compile_only: $(OBJS) | 411 compile_only: $(OBJS) |
394 | 412 |
413 V8_LIBDIR=$(V8_DIR)/out/native/lib.target | |
414 | |
415 ifdef WASM | |
416 V8_LIBS := \ | |
417 $(V8_LIBDIR)/libv8.so \ | |
418 $(V8_LIBDIR)/libicuuc.so \ | |
419 $(V8_LIBDIR)/libicui18n.so | |
420 endif | |
421 | |
395 $(OBJDIR)/pnacl-sz: $(OBJS) | 422 $(OBJDIR)/pnacl-sz: $(OBJS) |
396 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \ | 423 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \ |
397 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) | 424 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) \ |
425 » $(V8_LIBS) | |
Jim Stichnoth
2016/03/29 17:49:56
untabify this line (or just add it to the previous
Eric Holk
2016/03/29 22:58:07
Done.
| |
398 | 426 |
399 $(SB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SB_OBJS) | 427 $(SB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SB_OBJS) |
400 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) | 428 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) |
401 | 429 |
402 $(SBB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SBB_OBJS) | 430 $(SBB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SBB_OBJS) |
403 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) \ | 431 $(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS) \ |
404 --pnacl-disable-abi-check | 432 --pnacl-disable-abi-check |
405 | 433 |
406 $(SB_OBJDIR)/pnacl-sz.x8632.nexe: $(SB_OBJDIR)/pnacl-sz.pexe | 434 $(SB_OBJDIR)/pnacl-sz.x8632.nexe: $(SB_OBJDIR)/pnacl-sz.pexe |
407 $(SB_TRANSLATE) -arch x86-32 $^ -o $@ | 435 $(SB_TRANSLATE) -arch x86-32 $^ -o $@ |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
744 | 772 |
745 help-check-xtest: | 773 help-check-xtest: |
746 @cat Makefile.standalone-help/check-xtest.txt | 774 @cat Makefile.standalone-help/check-xtest.txt |
747 | 775 |
748 clean: | 776 clean: |
749 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ | 777 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ |
750 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json | 778 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json |
751 | 779 |
752 clean-all: clean | 780 clean-all: clean |
753 rm -rf build/ crosstest/Output/ | 781 rm -rf build/ crosstest/Output/ |
OLD | NEW |