xamarin-macios/tools/mlaunch
Manuel de la Pena 57448bff48
[Makefile] Remove warning in submake commands. (#12840)
Remove the following warning:

```
make[3]: warning: -jN forced in submake: disabling jobserver mode.
/Applications/Xcode_13.0.0-beta5.app/Contents/Developer/usr/bin/make -C ../../../maccore/tools/mlaunch install -j8
make[3]: warning: -jN forced in submake: disabling jobserver mode.
/Applications/Xcode_13.0.0-beta5.app/Contents/Developer/usr/bin/make
../../_build/Microsoft.iOS.Sdk/tools/bin/mlaunch
../../_build/Microsoft.tvOS.Sdk/tools/bin/mlaunch
```

There is no need to pass the number of jobs to be used to a submake
commands as per the gnu make documentation:
```
The ‘-j’ option is a special case (see Parallel Execution). If you set it to some numeric value ‘N’ and your operating system supports it (most any UNIX system will; others typically won’t), the parent make and all the sub-makes will communicate to ensure that there are only ‘N’ jobs running at the same time between them all. Note that any job that is marked recursive (see Instead of Executing Recipes) doesn’t count against the total jobs (otherwise we could get ‘N’ sub-makes running and have no slots left over for any real work!)
```

That means there is not need to pass it since it will be the default
used in submake commands. The override has not effect other the warning
and therefore is better to remove the noise.
2021-09-27 06:55:23 -04:00
..
nupkg Fix some whitespace issues in various files. (#12399) 2021-08-11 10:06:46 +02:00
Makefile [Makefile] Remove warning in submake commands. (#12840) 2021-09-27 06:55:23 -04:00
README.md Put a binary copy of mlaunch in macios-binaries instead of in Azure. Fixes #3316. (#3877) 2018-04-10 09:53:11 +02:00

README.md

mlaunch

mlaunch is a closed source tool used to interact with simulators and devices.

We'll build this tool from souce if the xamarin build is enabled (configured with --enable-xamarin).

Otherwise we'll get a binary version from the macios-binaries repository. This version may be somewhat out of date, but should work at least for running tests.

To update the binary version of mlaunch in macios-binaries execute make publish in this directory (when the xamarin build is enabled, so that mlaunch is built from source).