-
-
Notifications
You must be signed in to change notification settings - Fork 866
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
Added "make debug" which builds with DEBUG_F flag #1108
Conversation
Should debug enable |
Let me check how much difference that makes to the linking time. |
Okay they take the same amount of time so I'll add it, good idea. |
Btw, with Also, no matter what it always says: |
Also instead of |
Oh this now has the problem that it's annoying to get an extra package built because the recipe writes over |
DEBUG_F provides extra logging info: whenever
FAIL
is invoked, a messages is printed with a javascript stack trace, and the source line function and file where the failure happened. When #1080 is merged, it will add debug statements whenever an error occurs inEM_JS
.I also added a missing semicolon in the
DEBUG_F
version ofFAIL
.