Christian Rondeau

Results 112 comments of Christian Rondeau

Thanks again @vishalbiswas, this was indeed my understanding (but I prefer _knowing_ this rather than just relying on my guesses). Where I am at (for those who are interested): Lookin...

I can now build the .deb file successfully! But here's my first roadblock. I copied the list of dependencies from the ubuntu .Net Core target, and I tried to install...

Skipping dependencies using `dpkg --ignore-dependencies` shows me I got something wrong even before getting dependencies (on termux) : ``` $ dpkg -i --ignore-depends=... dotnet-dev_1.0.0-preview2.0.1-0_aarch64.deb (Reading database ... 8408 files and...

HOSTBUILD is already off: https://github.com/christianrondeau/termux-packages/blob/dotnet-dev/packages/dotnet-dev/build.sh For the librairies, it makes sense and I can work through them, thanks. I'm still stumped for `Exec format error` though. I'll try cleaning my...

I rebuilt it to make sure. When I extract the generated `deb` file from termux-packages/debs` on ubuntu, it says: ``` $ ./data/data/com.termux/files/usr/bin/dotnet realpath(): Invalid argument Failed to resolve full path...

Here's the output in Termux on my S7: ``` ELF Header: Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 Class: ELF64...

I think I see what I misunderstood; `build-package.sh` does not _magically_ make programs work on aarch64; I still need to _compile_ for ARM before `build-package.sh` massages the output (which is...

@vishalbiswas that would not work for my purposes, my objective is to build "Standard" .Net Core apps (no dependency on an installed. Net frameworks) rather than the "full" framework. I...

Here's the overview of what I found on how to build it on ARM: - coreclr: https://github.com/dotnet/coreclr/blob/master/Documentation/building/linux-instructions.md - this is the os/arch-specific "core" of .Net Core. I can build it...

@cydhaselton So what you're saying, is that you tried to use a custom mono build for Termux, to run the Roslyn compiler and then use that to build dotnet cli?...