-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run make
to update template-coq/gen-src/cRelationClasses.mli.orig
#791
base: coq-8.16
Are you sure you want to change the base?
Conversation
It looks like the extraction changed somehow? The .orig file doesn't need to be checked in, you're right. |
Can we let the I hunted a problem for about an hour the other day where the issue was that extraction changed and the patch silently failed, resulting in a compilation error that I couldn't make sense of |
Does changing metacoq/template-coq/update_plugin.sh Lines 22 to 23 in ca64d72
with - patch -N -p0 < extraction.patch
- patch -N -p0 < specFloat.patch
+ patch -N -p0 < extraction.patch || exit $?
+ patch -N -p0 < specFloat.patch || exit $? work? |
Is that different to |
I think it's the same |
…q#791 (comment) Co-authored-by: Jason Gross <jgross@mit.edu>
I guess we can just remove the .orig file now |
Is this still relevant? |
The .orig file still exists, but it seems to no longer be the case that |
Is this change expected? Is this file supposed to be checked in? What's going on here?