Questions tagged [compile]

To compile is to convert the source code of a program into lower-level machine code that can be executed on a computing device.

To compile is to convert the source code of a program into lower-level machine code that can be executed on a computing device.

371 questions
39
votes
5 answers

Visual Studio not auto-building when I press the debug button

I'm writing code in Visual Studio but whenever I want to test the application and press the green arrow for "Start debugging", Visual Studio does not automatically recompile the active solution for me and I have to manually build the solution then…
Kurru
  • 1,744
35
votes
8 answers

Where do I find nmake for Windows 7 x64

I'm trying to compile a Perl source and I can't seem to find a version of nmake that works with Windows 7 64 bit. I've searched all over Microsoft's website and my Googlefu seems to be failing me. Can I use a different compiler- if so…
manyxcxi
  • 508
32
votes
4 answers

How to list imported symbols in ELF executable?

For PE executable, I can list the imported symbols using dumpbin /imports FILE.EXE or using the depends utility which is GUI application. nm ELF-binary just returns "no symbols".
Lenik
  • 18,830
27
votes
7 answers

Does compiling a program twice produce a bit-for-bit identical binary?

If I were to compile a program into a single binary, make a checksum, and then recompile it on the same machine with the same compiler and compiler settings and checksum the recompiled program, would the checksum fail? If so, why is this? If not,…
David
  • 471
26
votes
7 answers

Detect compiler used for EXE file

Is there any way to detect (or to hide) the compiler that was used to build an executable file?
Remus Rigo
  • 3,038
23
votes
3 answers

How to get `make` to recognize alias command

I am installing MOOG, and when I make -f Makefile.maclap I get the error: $ make -f Makefile.maclap g77 -w -c -o Abfind.o Abfind.f make: g77: No such file or directory make: *** [Abfind.o] Error 1 After research online, I think that, since I have…
user465786
21
votes
3 answers

Re-compile VIM with options

I have VIM installed but I need to compile it with specific options: In addition to the most commonly used features, the plugin requires: +python or +python3, +clientserver and +conceal. What are steps to uninstall, and recompile with those…
bdeonovic
  • 567
19
votes
1 answer

How was the first compiler compiled?

This has always racked my brain. Compilers compile code. I imagine that the compiler is coded. So to actually run the code for a compiler, you'd have to compile it. How was the first compiler compiled?
Rob
  • 747
18
votes
7 answers

Which PC components make the biggest impact on your compile times for Visual Studio?

Which PC specifications have the biggest impact on your compile times? Disk? Clock speed? Number of CPU cores?
Rob Allen
  • 1,899
16
votes
5 answers

Compiling the Linux kernel, how much size is needed?

I have downloaded the newest most stable Linux kernel, 2.6.33.2. I thought I would test this using VirtualBox. So I create a dynamically sized harddisk of 4 GB. And installed CentOS 5.3 with just the minimum packages. I setup the make menuconfig…
ant2009
  • 3,235
15
votes
2 answers

Python ./configure does not find g++ compiler

I'm trying to compile Python 3.4.1 on an emulated ARM machine (with Debian 7). ./configure gives me checking for g++... no but g++ is installed. So what could be the problem? I know it's not strictly needed, but I'd prefer that make will use g++…
13
votes
6 answers

Compile gvim from sources?

Recently, I've installed vim like so: hg clone https://vim.googlecode.com/hg/ vim cd vim sudo ./configure --enable-rubyinterp=yes --enable-pythoninterp=yes --enable-gui=gtk2 --prefix=/opt/vim make make install make install clean So, my VIM's…
Nemoden
  • 2,547
13
votes
2 answers

How to compile the best version of FFmpeg for Cygwin/Windows

It's generally accepted that, by default, FFmpeg comes packaged with lower-quality encoders - particularly when it comes to the default AAC encoder and the default resampler. According to these sources, the solution is to compile the program from…
11
votes
1 answer

Why windows executables show incorrect compiler timestamps?

I have observed that windows executable files show incorrect timestamps when I view them in PE studio. For example this Notepad.exe file shows a compiler timestamp of 0x86FCBD69 (Mon Oct 07 03:45:05 2041 ) To validate this today (3 May 2021),I…
Monk
  • 123
  • 1
  • 7
9
votes
1 answer

Compiling FFMPEG for ARM

I have a Linux ARM computer (BeagleBone Black). I am trying to do some camera streaming and need FFMPEG to do it. I have tried everything that I can think of (including following guides for compiling it in general), but have failed to compile…
1
2 3
24 25