compilation Questions

2

Solved

I'm working on verifying some Rust code using SAW. SAW requires that you compile to LLVM bitcode, which you can then import and verify. I know you can generate bitcode using the --emit=llvm-bc flag...
Riband asked 3/9, 2021 at 8:48

3

I'm trying to add maven support to an existing enterprise project. It is a multi-module project, and the first 2 modules compile and package without problems, but I'm facing the Compilation Error I...
Suckow asked 4/4, 2017 at 18:16

4

Solved

When building projects in C++, I've found debugging linking errors to be tricky, especially when picking up other people's code. What strategies do people use for debugging and fixing linking error...
Stoneblind asked 29/8, 2008 at 18:27

4

Solved

Well, I've been using Dev-C++ for a while for learning the language [c++], and some stuff wouldn't work properly, like global and local variables. Then I decided to download Microsoft Visual C++ to...
Aplacental asked 9/12, 2010 at 0:25

21

Solved

I keep getting this question asked in interviews: Write a program without using main() function. One of my friends showed me some code using macros, but I could not understand it. So the question i...
Sodamide asked 13/8, 2011 at 14:11

5

Solved

I need to figure out which translation units need to be restructured to improve compile times, How do I get hold of the compilation time, using cmake, for my translation units ?
Quits asked 11/5, 2011 at 9:47

6

Solved

This machine has had multiple version of Java JDK installed and multiple version of multiple IDEs (Netbeans, IntelliJ, Eclipse, etc.) Most recently, I have added JDK 15.0.2 and Netbeans 12.2. When ...
Firstclass asked 5/2, 2021 at 17:49

3

Solved

I am using Emacs 23 and have the following problem: I run our project's build system from within Emacs like M-x compile -> cd /foo/bar && ./build The build system now does some magic, "c...
Tempietempla asked 4/5, 2012 at 14:41

5

Solved

when I use cmake in Release mode I have the following binary: 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, Bu...
Kandis asked 30/7, 2016 at 15:9

7

Does anyone know how to statically compile nodejs to a single executable binary? I means no share libraries needed. There are some guides for old version nodejs, but not work for last one. Thanks...
Incurve asked 30/7, 2013 at 9:45

1

Solved

I've been working on a decompiler (for Glulx) which produces C code. In one mode it outputs all of the code in one switch statement (switching on the program counter). A medium sized input file pro...
Puppet asked 3/5, 2021 at 5:19

17

Solved

I am experiencing a strange behavior of Intellij IDEA 2016.3. Having a class with method foo and a JUnit test for the method when I get java.lang.Exception: No tests found matching Method foo when ...
Annunciate asked 29/11, 2016 at 10:33

9

Solved

I am trying to cross-compile a go app on OSX to build binaries for windows and linux. I have read everything what I could find on the net. Closest example that I have found has been published on (a...
Demagogy asked 28/8, 2012 at 23:16

3

When you load lib asan ,then it fails with below error : Shadow memory range interleaves with an existing memory mapping. ASan cannot proceed correctly. ABORTING. I loaded library using LD_PRELOAD...
Jugal asked 10/2, 2017 at 5:13

8

Got this error when compiled java code in ubuntu. ![Got this error][1] error: illegal character: '\ufeff' import java.net.*; ^ error: class, interface, or enum expected import java.net.*; ^...
Chinoiserie asked 15/8, 2017 at 17:1

2

i want to compile nodeJS into binary, similar to C/C++. compile $NodeCompile -ofast Node.js -o executable (fine if i can't do compiler settings) to run it $./executable
Superpower asked 9/6, 2021 at 3:55

4

I had done my first ever app by using Visual Studio 2019 - cross platform Xamarin C#. The app is running well. Now, I want to compile it to apk file so that I can install it to the mobile phone man...
Toothpick asked 6/5, 2019 at 13:58

6

Solved

How do I compile and run a program in Java on my mac? I'm new. Also I downloaded a program that was suggested to me on here called text wrangler if that has any bearing on the situation.
Brisco asked 2/3, 2010 at 4:58

3

Solved

I have written a C++ application that uses the Qt framework. I would like to make this application available on different platforms. Since I use Linux, I have no problems compiling the code for Lin...
Burchett asked 5/1, 2010 at 19:10

6

I want to execute java commands interactively from shell: is there a way to do so?
Tidings asked 4/5, 2011 at 22:36

8

Solved

Instead of uploading the precompiled dist directory, I want to compile src at server side instead. Here are my scripts inside package.json: "scripts": { "test": "echo \"No test specified\" &...
Tart asked 25/2, 2018 at 10:58

9

Solved

I was wondering if it is possible to save C# code fragments to a text file (or any input stream), and then execute those dynamically? Assuming what is provided to me would compile fine within any M...
Dayflower asked 5/5, 2009 at 18:55

13

Solved

I'm trying to build a gradle project but, when I try $ gradle build I get the following output: Starting a Gradle Daemon (subsequent builds will be faster) > Task :jar FAILED FAILURE: Build fai...
Effable asked 26/4, 2021 at 10:52

4

Solved

I am trying to build the breakpad libraries based on the documentation from https://chromium.googlesource.com/breakpad/breakpad/ but when I execute ./configure && make, I get an error when ...
Mold asked 14/6, 2016 at 8:34

2

In C++, we can use macro or constexpr (as C++11 said). What can we do in C#? Please see "Cannot declare..." comment for context: static class Constant { // we must ensure this is compile time co...
Allanallana asked 22/4, 2013 at 9:39

© 2022 - 2024 — McMap. All rights reserved.