Feature: Compiled Aleph Executables
See original GitHub issuecompile the alephjs app into a self-contained executable with deno compile
command.
ref: https://deno.land/manual@v1.7.1/tools/compiler
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Anatomy of a Binary Executable - Matt Oswalt
The actual executable format itself is ELF. There are many different formats, but this is a very common one in Linux-based operating systems....
Read more >How to compile ELF binary so that it can be loaded as ...
Compile the executable you want to dlopen() as an executable shared-library ( -pie ). Technically this file is an ELF shared object but...
Read more >What's the Journey of a Single Line of Compiled Code Like?
ELF binary consists of an executable header, zero or more program headers, and zero or more sections headers. Let's take a brief look...
Read more >Smashing The Stack For Fun And Profit Aleph One
This region corresponds to the text section of the executable file. ... To understand what the program does to call function() we compile...
Read more >WASM vs. EVM and Why Aleph Zero Explores the New Frontier
The Aleph Zero smart contract pallet takes advantage of ink!, a Rust-embedded domain-specific language (eDSL) that compiles to WASM. This ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@hazae41 yes, it’s just an execute file finally.
Since compiled binaries can’t use
import
straight for files relative to binary/executable we would have to rewrite our system to read the file and then convert it to base64 and then useimport
but we would still have to wait for base64 importing in binaries denoland/deno#9397. There are probably some other things we would need to rewrite for this. Could possibly look into using something like Leaf.Don’t forget to upvote the feature request for base64 imports in binaries