Xamarin Public Jenkins (auto-signing) 4319d145d2 Imported Upstream version 6.12.0.200
Former-commit-id: 5d37e871f1f079ba2c8f4f56b825b1472165f061
2023-07-11 19:15:35 +00:00
..
2019-09-24 08:53:40 +00:00
2019-12-10 18:00:56 +00:00
2020-02-05 08:39:55 +00:00

A platform makefile should define the following variables:

PLATFORM_DEBUG_FLAGS
	The flags to pass to the C# compiler to generate appropriate
	debug information

PLATFORM_MCS_FLAGS
	Flags that are always passed to the C# compiler

PLATFORM_RUNTIME
	The system runtime for executing CLR programs. Blank on Win32,
	probably $(RUNTIME) (the Mono runtime) on everything else.

PLATFORM_TWEAK_CORLIB_SOURCES
	A command to futz around with the sources to mscorlib.dll. See linux.make
	and win32.make for examples. Should be 'cat' unless you know what you're
	doing.

PLATFORM_CHANGE_SEPARATOR_CMD
	A command to change filename separators given on stdin. Leave undefined
	if Unixy filenames will work. See win32.make.

BOOTSTRAP_MCS
	The C# compiler used to compile mcs/mcs.exe, and possibly other
	assemblies if the user is doing a standalone build (that is, not
	a bootstrap).

hidden_prefix, hidden_suffix
	Prefix and suffix for hidden/temporary files. Unused right now, I think.

platform-check:
	A target to make sure that we can build on this platform.