Skip to content

Commit

Permalink
Fix #70831: Compile fails on system with 160 CPUs
Browse files Browse the repository at this point in the history
This fixes the following build issue on 160-CPU POWER8 machines

ext/tokenizer/tokenizer_data.c:28:34: fatal error: zend_language_parser.h: No such file or directory
 #include <zend_language_parser.h>

It is fixed by introducing an explicit dependency on the header file.

Signed-off-by: Daniel Axtens <[email protected]>
  • Loading branch information
daxtens authored and weltling committed Dec 6, 2015
1 parent aa8cac5 commit 2ea924f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ext/tokenizer/Makefile.frag
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
$(top_srcdir)/Zend/zend_language_parser.c:
$(top_srcdir)/Zend/zend_language_scanner.c:
$(top_srcdir)/ext/tokenizer/tokenizer_data.c: $(top_srcdir)/Zend/zend_language_parser.h
$(builddir)/tokenizer.lo: $(top_srcdir)/Zend/zend_language_parser.c $(top_srcdir)/Zend/zend_language_scanner.c

0 comments on commit 2ea924f

Please sign in to comment.