Skip to content

Commit

Permalink
Call ocamldep without the -native option (#129)
Browse files Browse the repository at this point in the history
It looks like `-native` causes `ocamldep` to produce insufficient dependencies for a bytecode + native build like we need to do.  See log at https://881129.bugs.gentoo.org/attachment.cgi?id=832035
  • Loading branch information
atupone authored Jan 29, 2023
1 parent 14f140d commit e67bccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project.mak
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ clean:
make -C tests clean

depend: $(AUTOGEN)
$(OCAMLDEP) -native $(OCAMLINC) $(MLSRC) $(MLISRC) > depend
$(OCAMLDEP) $(OCAMLINC) $(MLSRC) $(MLISRC) > depend

include depend

Expand Down

0 comments on commit e67bccb

Please sign in to comment.