Commit e302066b authored by Kevin Modzelewski's avatar Kevin Modzelewski

Bump pyc magic number and fix make dependency

pyc number bump since we fixed the tuple parsing issue
parent ed9c04a6
...@@ -465,9 +465,9 @@ check_format: ...@@ -465,9 +465,9 @@ check_format:
$(ECHO) checking formatting... $(ECHO) checking formatting...
$(VERB) cd src && ../tools/check_format.sh $(LLVM_BIN)/clang-format $(VERB) cd src && ../tools/check_format.sh $(LLVM_BIN)/clang-format
else else
format: format: $(CMAKE_SETUP_RELEASE)
$(NINJA) -C $(HOME)/pyston-build-release format $(NINJA) -C $(HOME)/pyston-build-release format
check_format: check_format: $(CMAKE_SETUP_RELEASE)
$(NINJA) -C $(HOME)/pyston-build-release check-format $(NINJA) -C $(HOME)/pyston-build-release check-format
endif endif
......
...@@ -1012,9 +1012,9 @@ AST_Module* parse_file(const char* fn) { ...@@ -1012,9 +1012,9 @@ AST_Module* parse_file(const char* fn) {
const char* getMagic() { const char* getMagic() {
if (ENABLE_PYPA_PARSER) if (ENABLE_PYPA_PARSER)
return "a\ncJ"; return "a\ncK";
else else
return "a\ncj"; return "a\nck";
} }
#define MAGIC_STRING_LENGTH 4 #define MAGIC_STRING_LENGTH 4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment