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

Unified Diff: Makefile.standalone

Issue 1837663002: Initial Subzero WASM prototype. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merging with master Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | README-wasm.md » ('j') | src/IceCfg.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 716e8d6fbdd0610832f66ff7c6d6f5cd199cdf1b..9d2f9dcd6fa5c69b89f1edac029af7b6936d1bc7 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -179,6 +179,9 @@ endif
SB_OBJDIR := $(OBJDIR)+Sandboxed
SBB_OBJDIR := $(OBJDIR)+SandboxedBrowser
+V8_DIR = ../../../../v8
Jim Stichnoth 2016/04/01 01:46:43 Yikes. Can this be specified in terms of $(NACL_R
Eric Holk 2016/04/01 19:15:01 Done.
+V8_CXXFLAGS := -I$(V8_DIR)
+
$(info -----------------------------------------------)
$(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH))
$(info Using SB_LLVM_PATH = $(SB_LLVM_PATH))
@@ -251,15 +254,27 @@ ifdef GPLUSPLUS
OBJDIR := $(OBJDIR)+Gplusplus
endif
-BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -Werror -fno-rtti \
+BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -fno-rtti \
-fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \
$(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD
+ifndef WASM
+ # The WASM code inherits a lot of V8 code, which does not compile with
+ # -Werror.
+ BASE_CXXFLAGS := $(BASE_CXXFLAGS) -Werror
+endif
+
CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \
$(STDLIB_FLAGS)
SB_CXXFLAGS := $(SB_LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(BASE_CXX_DEFINES) \
-Wno-unknown-pragmas -I$(NACL_ROOT) -I$(NACL_ROOT)/..
+ifdef WASM
+ CXXFLAGS := $(CXXFLAGS) $(V8_CXXFLAGS) -DALLOW_WASM=1
Jim Stichnoth 2016/04/01 01:46:43 also, something like: OBJDIR := $(OBJDIR)+Wasm
Eric Holk 2016/04/01 19:15:01 Done.
+else
+ CXXFLAGS := $(CXXFLAGS) $(V8_CXXFLAGS) -DALLOW_WASM=0
+endif
+
LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections \
$(LD_EXTRA) $(STDLIB_FLAGS)
# Not specifying -Wl,--gc-sections but instead doing bitcode linking GC w/ LTO.
@@ -315,6 +330,11 @@ ifndef MINIMAL
IceTypeConverter.cpp
endif
+ifdef WASM
+ SRCS += \
+ WasmTranslator.cpp
+endif
+
OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
SB_OBJS=$(patsubst %.cpp, $(SB_OBJDIR)/%.o, $(SRCS))
SBB_OBJS=$(patsubst %.cpp, $(SBB_OBJDIR)/%.o, $(SRCS))
@@ -392,9 +412,18 @@ sb_make_symlink: $(NEXES)
compile_only: $(OBJS)
+V8_LIBDIR=$(V8_DIR)/out/native/lib.target
+
+ifdef WASM
+ V8_LIBS := \
+ $(V8_LIBDIR)/libv8.so \
+ $(V8_LIBDIR)/libicuuc.so \
+ $(V8_LIBDIR)/libicui18n.so
+endif
+
$(OBJDIR)/pnacl-sz: $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) \
- -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib)
+ -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) $(V8_LIBS)
$(SB_OBJDIR)/pnacl-sz.nonfinal.pexe: $(SB_OBJS)
$(SB_CXX) $(SB_LDFLAGS) -o $@ $^ $(SB_LLVM_LDFLAGS)
« no previous file with comments | « no previous file | README-wasm.md » ('j') | src/IceCfg.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698