1
0
Fork 0

Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel

This commit is contained in:
Michael Hackstein 2014-10-22 10:53:43 +02:00
commit bedec7a435
2 changed files with 4 additions and 5 deletions

View File

@ -21,13 +21,13 @@ BUILT_SOURCES += @V8_LIBS@
if ENABLE_ARM
cd @top_srcdir@/3rdParty/V8 \
&& CFLAGS="-O2 -g -fsigned-char" \
CXXFLAGS="-O2 -g -fsigned-char" \
&& CFLAGS="-O2 -g -fsigned-char -DENABLE_GDB_JIT_INTERFACE -Wno-unused-local-typedefs" \
CXXFLAGS="-O2 -g -fsigned-char -DENABLE_GDB_JIT_INTERFACE -Wno-unused-local-typedefs" \
$(MAKE) CXX=$(CXX) LINK=$(CXX) library=static strictaliasing=off snapshot=off werror=no hardfp=on @V8_TARGET@
else
cd @top_srcdir@/3rdParty/V8 \
&& CFLAGS="-O2 -g" \
CXXFLAGS="-O2 -g" \
&& CFLAGS="-O2 -g -DENABLE_GDB_JIT_INTERFACE -Wno-unused-local-typedefs" \
CXXFLAGS="-O2 -g -DENABLE_GDB_JIT_INTERFACE -Wno-unused-local-typedefs" \
$(MAKE) CXX=$(CXX) LINK=$(CXX) library=static strictaliasing=off snapshot=off werror=no @V8_TARGET@
endif

View File

@ -27,7 +27,6 @@ def replaceCode(pathOfFile, newVersionNumber):
lines = lines.replace("<a href=\"../ModuleGraph/GraphConstructor.html\">","<a class=\"fa fa-exclamation-triangle\" style=\"color:rgba(240,210,0,1)\" href=\"../ModuleGraph/GraphConstructor.html\">")
lines = lines.replace("<a href=\"../ModuleGraph/VertexMethods.html\">","<a class=\"fa fa-exclamation-triangle\" style=\"color:rgba(240,210,0,1)\" href=\"../ModuleGraph/VertexMethods.html\">")
lines = lines.replace("<a href=\"../ModuleGraph/EdgeMethods.html\">","<a class=\"fa fa-exclamation-triangle\" style=\"color:rgba(240,210,0,1)\" href=\"../ModuleGraph/EdgeMethods.html\">")
lines = lines.replace("<a href=\"../Aql/GraphFunctions.html\">","<a class=\"fa fa-exclamation-triangle\" style=\"color:rgba(240,210,0,1)\" href=\"../Aql/GraphFunctions.html\">")
lines = lines.replace("VERSION_NUMBER", newVersionNumber)
f.write(lines)
f.close()