How to install 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
bumped to the homepage by Community♦ 18 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♦ 18 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♦ 18 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♦ 18 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