How to install FreeBASICMissing libriaries for a GUI .bas test and how does one get them? ld: cannot find...
Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?
When can a QA tester start his job?
How does Leonard in "Memento" remember reading and writing?
Why exactly do action photographers need high fps burst cameras?
Why did Luke use his left hand to shoot?
Odd 74HCT1G125 behaviour
Graph with overlapping labels
Absorbing damage with Planeswalker
Making him into a bully (how to show mild violence)
What is the wife of a henpecked husband called?
Has any human ever had the choice to leave Earth permanently?
Non-Cancer terminal illness that can affect young (age 10-13) girls?
What to look for when criticizing poetry?
Can you tell from a blurry photo if focus was too close or too far?
A Missing Symbol for This Logo
Is there a Linux system call to create a “view” of a range of a file?
Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?
Move fast ...... Or you will lose
What is the purpose of easy combat scenarios that don't need resource expenditure?
Words and Words with "ver-" Prefix
Cat is tipping over bed-side lamps during the night
Why is it that Bernie Sanders is always called a "socialist"?
Citing paywalled articles accessed via illegal web sharing
How do I append a character to the end of every line in an Excel cell?
How to install FreeBASIC
Missing libriaries for a GUI .bas test and how does one get them? ld: cannot find -lX11, -lXext, -lXpm, -lXrandr, -lXrenderHow to create a new user defined command to kill processes using process name?
I installed FreeBasic under Ubuntu 14 using the provided shell installer,
and received a message that the installation was successful. BUT when I
attempt to run the compiler it gives a list of missing "-dev" files,
only two of which I was able to locate in repositories. The installation
readme indicates that some of the listed dependencies may have different
NAMES in some Linux dialects. How do I locate them in Ubuntu 14 ????
[I am a new Linux user...]
freebasic
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I installed FreeBasic under Ubuntu 14 using the provided shell installer,
and received a message that the installation was successful. BUT when I
attempt to run the compiler it gives a list of missing "-dev" files,
only two of which I was able to locate in repositories. The installation
readme indicates that some of the listed dependencies may have different
NAMES in some Linux dialects. How do I locate them in Ubuntu 14 ????
[I am a new Linux user...]
freebasic
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I installed FreeBasic under Ubuntu 14 using the provided shell installer,
and received a message that the installation was successful. BUT when I
attempt to run the compiler it gives a list of missing "-dev" files,
only two of which I was able to locate in repositories. The installation
readme indicates that some of the listed dependencies may have different
NAMES in some Linux dialects. How do I locate them in Ubuntu 14 ????
[I am a new Linux user...]
freebasic
I installed FreeBasic under Ubuntu 14 using the provided shell installer,
and received a message that the installation was successful. BUT when I
attempt to run the compiler it gives a list of missing "-dev" files,
only two of which I was able to locate in repositories. The installation
readme indicates that some of the listed dependencies may have different
NAMES in some Linux dialects. How do I locate them in Ubuntu 14 ????
[I am a new Linux user...]
freebasic
freebasic
asked Apr 19 '15 at 14:31
Lee RiceLee Rice
1626
1626
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I did a little bit of googling for freeBASIC dependencies , this might help
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install lib32ncurses5-dev
sudo apt-get install libx11-dev:i386 libxext-dev:i386 libxrender-dev:i386 libxrandr-dev:i386 libxpm-dev:i386
add a comment |
The FreeBASIC wiki (specifically, http://freebasic.net/wiki/DevBuildLinux) describes how to get FB to compile on Linux, and suggests the following packages:
- gcc
- make
- libncurses5-dev
- libgpm-dev
- libx11-dev
- libxext-dev
- libxpm-dev
- libxrandr-dev
- libxrender-dev
- libgl1-mesa-dev
- libffi-dev
You can install them all in one command with:
sudo apt install gcc make lib{ncurses5,gpm,x11,xext,xpm,xrandr,xrender,gl1-mesa,ffi}-dev
Some of the packages may only be needed if you actually plan to build the FreeBASIC compiler and runtime libraries from scratch. But they are at least sufficient for getting programs to compile and run with fbc.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f611259%2fhow-to-install-freebasic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I did a little bit of googling for freeBASIC dependencies , this might help
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install lib32ncurses5-dev
sudo apt-get install libx11-dev:i386 libxext-dev:i386 libxrender-dev:i386 libxrandr-dev:i386 libxpm-dev:i386
add a comment |
I did a little bit of googling for freeBASIC dependencies , this might help
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install lib32ncurses5-dev
sudo apt-get install libx11-dev:i386 libxext-dev:i386 libxrender-dev:i386 libxrandr-dev:i386 libxpm-dev:i386
add a comment |
I did a little bit of googling for freeBASIC dependencies , this might help
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install lib32ncurses5-dev
sudo apt-get install libx11-dev:i386 libxext-dev:i386 libxrender-dev:i386 libxrandr-dev:i386 libxpm-dev:i386
I did a little bit of googling for freeBASIC dependencies , this might help
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install lib32ncurses5-dev
sudo apt-get install libx11-dev:i386 libxext-dev:i386 libxrender-dev:i386 libxrandr-dev:i386 libxpm-dev:i386
answered Apr 19 '15 at 14:42
Mayur KulkarniMayur Kulkarni
4881414
4881414
add a comment |
add a comment |
The FreeBASIC wiki (specifically, http://freebasic.net/wiki/DevBuildLinux) describes how to get FB to compile on Linux, and suggests the following packages:
- gcc
- make
- libncurses5-dev
- libgpm-dev
- libx11-dev
- libxext-dev
- libxpm-dev
- libxrandr-dev
- libxrender-dev
- libgl1-mesa-dev
- libffi-dev
You can install them all in one command with:
sudo apt install gcc make lib{ncurses5,gpm,x11,xext,xpm,xrandr,xrender,gl1-mesa,ffi}-dev
Some of the packages may only be needed if you actually plan to build the FreeBASIC compiler and runtime libraries from scratch. But they are at least sufficient for getting programs to compile and run with fbc.
add a comment |
The FreeBASIC wiki (specifically, http://freebasic.net/wiki/DevBuildLinux) describes how to get FB to compile on Linux, and suggests the following packages:
- gcc
- make
- libncurses5-dev
- libgpm-dev
- libx11-dev
- libxext-dev
- libxpm-dev
- libxrandr-dev
- libxrender-dev
- libgl1-mesa-dev
- libffi-dev
You can install them all in one command with:
sudo apt install gcc make lib{ncurses5,gpm,x11,xext,xpm,xrandr,xrender,gl1-mesa,ffi}-dev
Some of the packages may only be needed if you actually plan to build the FreeBASIC compiler and runtime libraries from scratch. But they are at least sufficient for getting programs to compile and run with fbc.
add a comment |
The FreeBASIC wiki (specifically, http://freebasic.net/wiki/DevBuildLinux) describes how to get FB to compile on Linux, and suggests the following packages:
- gcc
- make
- libncurses5-dev
- libgpm-dev
- libx11-dev
- libxext-dev
- libxpm-dev
- libxrandr-dev
- libxrender-dev
- libgl1-mesa-dev
- libffi-dev
You can install them all in one command with:
sudo apt install gcc make lib{ncurses5,gpm,x11,xext,xpm,xrandr,xrender,gl1-mesa,ffi}-dev
Some of the packages may only be needed if you actually plan to build the FreeBASIC compiler and runtime libraries from scratch. But they are at least sufficient for getting programs to compile and run with fbc.
The FreeBASIC wiki (specifically, http://freebasic.net/wiki/DevBuildLinux) describes how to get FB to compile on Linux, and suggests the following packages:
- gcc
- make
- libncurses5-dev
- libgpm-dev
- libx11-dev
- libxext-dev
- libxpm-dev
- libxrandr-dev
- libxrender-dev
- libgl1-mesa-dev
- libffi-dev
You can install them all in one command with:
sudo apt install gcc make lib{ncurses5,gpm,x11,xext,xpm,xrandr,xrender,gl1-mesa,ffi}-dev
Some of the packages may only be needed if you actually plan to build the FreeBASIC compiler and runtime libraries from scratch. But they are at least sufficient for getting programs to compile and run with fbc.
answered Jul 31 '16 at 16:30
mwfearnleymwfearnley
1,01421120
1,01421120
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f611259%2fhow-to-install-freebasic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown