Skip to content

Commit cbda14e

Browse files
committed
Stub DSO generator task
1 parent 9b6aab8 commit cbda14e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System.Collections.Generic;
2+
3+
using Xamarin.Android.Tasks.LLVMIR;
4+
using Xamarin.Android.Tools;
5+
6+
namespace Xamarin.Android.Tasks;
7+
8+
class AssemblyDSOGenerator : LlvmIrComposer
9+
{
10+
Dictionary<AndroidTargetArch, List<DSOAssemblyInfo>> assemblies;
11+
12+
public AssemblyDSOGenerator (Dictionary<AndroidTargetArch, List<DSOAssemblyInfo>> dsoAssemblies)
13+
{
14+
assemblies = dsoAssemblies;
15+
}
16+
17+
protected override void Construct (LlvmIrModule module)
18+
{
19+
throw new System.NotImplementedException();
20+
}
21+
}

0 commit comments

Comments
 (0)