Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upServo full recompilation when switching between desktop and mobile compilation targets #18050
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that Servo does a full compilation when switching between mobile and desktop compilation targets.
Example after a finished android compilation:
./mach build --release --android: No need to compile anything./mach build --release: Recompiles desktop../mach build --release --android: Recompiles everything again even if I force stop the previous commandIs there any way to avoid this?