Tagged Questions
2
votes
1answer
76 views
How do I remove/uninstall a program that I have complied from source? [duplicate]
How do I remove a program that I have compiled from source using the ./configure; make; make install method? Does it matter whether I have kept the original directory that the source was stored in or ...
13
votes
5answers
588 views
How to compile and install programs from source
This is an issue that really limits my enjoyment of Linux. If the application isn't on a repository or if it doesn't have an installer script, then I really struggle where and how to install an ...
2
votes
1answer
130 views
How should I install software from source so that I can make my configuration manageable and reproducible?
I work with a lot of scientific software on Linux distributions (normally Debian variants and Red Hat variants). In order to maximize performance and get access to the latest features, it's often ...
0
votes
0answers
221 views
Build Chromium from source
I'm using Fedora 16 and I've successfully compiled Chromium from source (the first time I compiled something from source) a while back following these instructions:
...
0
votes
1answer
211 views
Clang/LLVM Install Within Slackware?
I would like to install the Clang/LLVM compiler suite within Slackware since I use it as my default C conpiler for my C programming assignments. I am currently building it within a build directory ...
6
votes
2answers
520 views
Why are there no -dev packages in Arch Linux?
I understand that source based distributions like Gentoo or Slackware do not need *-dev versions of programs. They include the source code as well as header files for compiling everything locally.
...
2
votes
1answer
1k views
Why does 'make' complain about a missing rule when I try to build a program from source?
I am a Linux novice, and I am attempting to compile scientific software called DL_POLY_Classic. I downloaded the zip file dl_class_1.6.tar.gz and unzipped it using the command tar xvzf ...
12
votes
13answers
639 views
Distros that support compiling from source
A long time ago I used to use FreeBSD with its ports system and after that Gentoo for portage in order to install applications via compiling from source. I did this in order to directly target my ...
6
votes
2answers
825 views
What are the advantages of building tools/libs from source?
By building from source do you gain any benefits? Is the code better optimized to your hardware architecture? Is it optimized better in general?
Why would someone choose to build from source rather ...
1
vote
2answers
146 views
How can I compile unclutter to my embedded linux? (newbie)
I got the source code of unclutter using apt-get source unclutter, and copied the files to my embedded system.
Now, how can I compile it?
--update
I've tried this answer:
How to compile and install ...
4
votes
2answers
74 views
Get list of required libraries when installing something from source
When installing something from source (say, Ruby 1.9.2), what command can I run to get a complete list of all the dependencies needed to install that application? Is this possible?