New answers tagged compiling
0
Found the problem. The -ldl parameter was specified too early on the command line. Modifying the Makefile.in to put the libraries after all .o files fixed the problem.
The 1.9 release of Scheme48 fixes this as well.
0
If you look at the man page for make with $ man make, it explains a little more. The -j flag, when followed by a number, restricts the number of processes running at one time to whatever you put. However, if -j is not followed by a number, the number of threads is not limited. I think since it was executing so many threads at one time, it hosed things up. As ...
1
I have the same issue when compiling the kernel for zynq.
This is what I used:
make -j ARCH=arm UIMAGE_LOADADDR=0x8000 uImage
Now I change it into:
make ARCH=arm
and it compiles and creates the Image and zImage in the \arch\arm\boot\
Goodluck
1
Install CMake and cd to the build directory and command:
cmake .
If you want to have more control install cmake Gui
0
If instead of
#include "linux/config.h"
writing:
#include "usr/src/linux-headers-3.2.0-41/include/linux/config.h"
helps, it means that your compiler doesn't know where to look for include files.
If you are using makefile or command-line compilation then this page will explain what was happening. Othwerise, if you are using some IDE like Eclipse or ...
1
I would suggest that whatever problem you have it will not be solved by recompiling the python version. Python 2.7.x is standard on Ubuntu 12.04 and is used by many Ubuntu utils, I would not advise trying to install a recompiled version over it.
As gertvdijk suggests, a more specific description of the problem may help.
Can you try starting the python ...
0
You can find the previous versions here: http://softwareupdate.vmware.com/cds/vmw-desktop/player/
This blog has some details on what to do if you are running VMware on a Windows host: http://pete.akeo.ie/2011/11/using-older-versions-of-vmware-tools.html
2
You've written a terminal program, not a GUI program, there's no graphical interface loaded at all by your program. So it "not running" from the GUI doesn't mean it isn't actually running.
If you run it form the GUI, you need to run it as "Run from Terminal". Otherwise it won't show any output ever.
However, you should probably instead be running from ...
0
Try to use this repo:
sudo add-apt-repository ppa:debfx/virtualbox &&\
sudo apt-get update &&\
sudo apt-get install virtualbox
That solved the problem for me.
0
Execute the following command to install all the requirements mentioned in your post. And then do ./make
sudo apt-get install libtiff4 libtiff4-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl1.2-dev
0
OpenJDK work best for me. It's simple and I have never face any problem. Just follow these simple steps:
From Terminal install the open jdk
sudo apt-get install openjdk-7-jdk
Write program and save the file as filename.java
Now to compile use this command from the terminal
javac filename.java
If everything work well you will notice a filename.class ...
0
It does appear that at this moment in time, it is not possible to build using a 32-bit system. Development tools are currently available for 64-bit: https://wiki.ubuntu.com/Touch/Building
For development you can run any 64-bit Desktop version of Ubuntu
between 12.04 LTS and 13.04.
3
how to compile under 13.04
The keypart of your compile error was the following:
/usr/bin/ld: main.o: undefined reference to symbol 'exp@@GLIBC_2.2.5'
/usr/bin/ld: note: 'exp@@GLIBC_2.2.5' is defined in DSO /lib/x86_64-linux-gnu/libm.so.6 so try adding it to the linker command line
This shows that you need to link to the correct library - you do this by ...
0
Try adding the following to the cmake file:
find_package(Threads REQUIRED)
target_link_libraries({$target} ${CMAKE_THREAD_LIBS_INIT})
0
Athena is currently under HEAVY development stage (read - absolutely utterly incomplete) and it's kept on a private BitBucket repo for the time being.
So installing it is now possible for now.
1
Dash-> dconf-editor and navigate to "house keeping" (exact path is in the image).
Command line
gsettings set org.gnome.settings-daemon.plugins.housekeeping free-size-gb-no-notify 5
and the 1 Gb changes to a 5 Gb.
0
Anyway I would suggest to follow:
How do I install latest PHP in supported Ubuntu versions (like 5.4.x in Ubuntu 12.04)?
Compiling vanilla PHP requires you to do a little bit of patching of upstream configure script to support MultiArch libraries. You can pull the required patches from debian/patches/ directory in the Debian package.
0
I have not found an "official" PPA for new tmux packages. However a PPA search on launchpad turns up quite a few options.
Many are out of date, but I found a ppa by pi-rho that has current tmux and tmux-next packages for 12.04, 12.10 and 13.04. (At the time of this answer they are at versions 1.8-1ubuntu1~ppa2 and 1.9~20130425~bzr3062+9-1ubuntu1~ppa0). ...
0
Just for records, I switched to Ubuntu 12.04 x84_64 and everything worked perfectly. Just installing the dependencies and no errors occurred. Nevertheless, I don't know why it didn't work with Ubuntu 12.04 i386.
0
To install proxychains, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the commands below:
sudo apt-get install proxychains
I just used that command, and it worked. See image below
Top 50 recent answers are included

