-
Notifications
You must be signed in to change notification settings - Fork 25
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
mozangle seems to be being built twice #28
Comments
We build both a static library and a DLL in Lines 99 to 121 in e344a1b
|
Ah. Maybe we should only build one depending on the needs of the consumer? Also one of them doesn't build in parallel. |
Also, is it necessary to build twice to produce both outputs? |
I honestly don't know. And yes, I would be open to adding features to control generation of the DLL and static libraries. |
If you can figure out a way to get the DLL to build in parallel, that would be helpful. Building shared libraries has been declared outside the scope of the cc crate, unfortunately. |
It looks like this is causing the webrender CI to timeout which is preventing the github repo from being updated: servo/webrender#3753 (comment). @jdm is it possible for you to make this double building behaviour opt in? |
The first time we compile each file individually. The second time we pass all the files to a single cl instance. I don't yet understand why.
The text was updated successfully, but these errors were encountered: