-
Notifications
You must be signed in to change notification settings - Fork 445
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
Parallel p4c builds recently broken? #1644
Comments
What is the error you get? |
Trying out a few more variations, I noticed that I get a pretty consistent failure with one of my shell scripts that uses The failure occurs while building the executables. I am not running |
We've seen this bug before. |
I reproduce here the error:
|
This results from a missing build dependency. I fixed a related issue in #1627, where I had to specify that the
|
Wow, that was quick! I tried doing parallel builds with |
I have used a script for building p4c for over a year now, consistently using the ability of make to do parallel builds using command line options like
-j 4
to enable up to 4 parallel processes to be run bymake
.Since some time around the latest version of p4c as of 2018-Dec-21, or perhaps starting 1 or 2 commits after that date, I get fairly consistent failures when using
-j4
, but it seems that I can get consistent build success if I use-j1
, or no-j<number>
argument at all.Since there is an easy workaround, I do not consider this a high priority issue, but in case anyone who knows more about the p4c build process than I do wants this feature to work, I wanted to create an issue that perhaps it is not.
Below are the particular command line options and steps I have been using that cause the failure:
I am using Ubuntu Linux 16.04 and/or 18.04 for my builds, and seeing similar parallel build issues with both.
The text was updated successfully, but these errors were encountered: