Questions tagged [native-executable]

11 questions
15
votes
11 answers

Turning .NET executable into native executable

Is there any approach to convert an application developed in .NET into a native executable (sources are included)? Installing the whole framework (up to .NET Framework 3.5 SP1) takes a lot of time - not always the computers are updated from the…
lmsasu
  • 7,459
  • 18
  • 79
  • 113
7
votes
2 answers

How do you get Graphics in Native NT Text-Mode?

Apparently, the EASEUS Partition Master program can display graphics before the Windows GUI starts (i.e., it runs at the same time CheckDisk runs at boot). What I already know: This might require not-very-well-documented functions. That's fine with…
user541686
  • 205,094
  • 128
  • 528
  • 886
4
votes
1 answer

how can I debug an android native executable and library not directly integrated into the APK application

I have an android application that consists of a Java based APK, native executable, and native library. The apk talks to the native (root NDK c/c++) executable and library over a socket. I'm not sure if it matters but the executable and library…
3
votes
1 answer

Alternate Data Streams files disappear on Windows 10

I'm experimenting an strange behavior on Windows 10 with Alternate Data Streams (ADS) meta data. I have downloaded an executable file from internet, and, as it was downloaded to a NTFS partition, it has its corresponding ADS file marked as Zone…
2
votes
1 answer

Why D program executable is big almost to 9+ MiB?

I found a simple Hello World program D executable is big size, about 9.2 MiB. I'm using gdc-4.8 compiler. Is this a feature or some kind of bug? Thanks for all responses!
1
vote
1 answer

Android trying to run an unix executable: syntax error: '__TEXT' unexpected

While trying to run a simple HelloWorld Unix executable: #include using namespace std; int main() { cout << "Hello World!" << endl; } (Compiled through g++ HelloWorld.cpp -o HelloWorld (on Mac). The program works on my Mac by using…
user6450961
1
vote
7 answers

Status of VB6/ Best Desktop Application Language with Native Compilation

I was looking for a Desktop Application Programming Language with one of the biggest constraint: - “I need to output as native executable”. I explored multiple options: Java is not a very good option for desktop programming, but still you can use…
Sandeep Jindal
  • 14,510
  • 18
  • 83
  • 121
0
votes
1 answer

Can we change "Windows native commands" default system directory location

I want to get the windows system directory(i,e C:\Windows\System32) where windows native files(like cmd.exe, xcopy.exe, reg.exe, etc..) are available to prevent Process Hijacking in the batch file by adding an absolute path of .exe in batch file. I…
Sakthis
  • 5
  • 3
0
votes
0 answers

Docker Container fail to run the spring native executable built using GraalVM

I have built a simple REST API using springboot3 and graalVM runtime. I am trying to dockerize the same app and run locally. But upon running the container I get error exec /app: exec format error. I am using mac M1 and trying to run docker…
0
votes
1 answer

How to select an executable binary for appropriate architecture?

I created an executable binary for arm64-v8a,armeabi-v7a,x86 and x86_64. But how can i choose which binary to run on a device?
NoNoob
  • 63
  • 9
0
votes
1 answer

Where's the native executable in my application?

I've got an application project which includes a jni native code (example.c) with the following makefile: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := example LOCAL_SRC_FILES := example.c LOCAL_LDLIBS :=…