Skip to content

Instantly share code, notes, and snippets.

@decriptor
Created February 20, 2014 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save decriptor/9121075 to your computer and use it in GitHub Desktop.
Save decriptor/9121075 to your computer and use it in GitHub Desktop.
sgshaw@sgshaw_pro:~/code/mono (git:master)$ grep -ir FULL_AOT_RUNTIME *
mcs/build/profiles/mobile_static.make:PROFILE_MCS_FLAGS = -d:NET_1_1 -d:NET_2_0 -d:NET_2_1 -d:NET_3_5 -d:NET_4_0 -d:NET_4_5 -d:MOBILE -d:FULL_AOT_RUNTIME -d:DISABLE_REMOTING -d:DISABLE_COM -nowarn:1699 -nostdlib -lib:$(topdir)/class/lib/$(PROFILE) $(DEFAULT_REFERENCES) $(PLATFORM_DEBUG_FLAGS)
mcs/build/profiles/monotouch.make:PROFILE_MCS_FLAGS = -d:NET_1_1 -d:NET_2_0 -d:NET_2_1 -d:NET_3_5 -d:NET_4_0 -d:NET_4_5 -d:MOBILE -d:MONOTOUCH -d:DISABLE_REMOTING -d:DISABLE_COM -d:FULL_AOT_RUNTIME -nowarn:1699 -nostdlib -lib:$(topdir)/class/lib/$(PROFILE) $(DEFAULT_REFERENCES) $(PLATFORM_DEBUG_FLAGS)
^C
sgshaw@sgshaw_pro:~/code/mono (git:master)$ grep -ir IOS_REFLECTION *
mcs/class/corlib/System.Reflection.Emit/AssemblyBuilderAccess.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/FlowControl.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/Label.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/MethodToken.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/OpCode.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/OpCodeNames.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/OpCodes.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/OpCodeType.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/OperandType.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/PEFileKinds.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/corlib/System.Reflection.Emit/StackBehaviour.cs:#if !FULL_AOT_RUNTIME || IOS_REFLECTION
mcs/class/Mono.CSharp/Makefile:LIB_MCS_FLAGS += -d:IOS_REFLECTION
sgshaw@sgshaw_pro:~/code/mono (git:master)$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment