Page 2 of 2

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-18 14:54
by botg
The usual compiler is GCC, and available from https://gcc.gnu.org/

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 03:02
by cto4autonomoussystem.ai
Installing-c17-and-c20-on-ubuntu
would the following work:

[42] #1
"run the following commands to add
the Ubuntu Toolchain repository:"

$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update

[42] #2
"Once updated the apt, install them with the following
commands:"

$ sudo apt install gcc-10 gcc-10-base gcc-10-doc g++-10
$ sudo apt install libstdc++-10-dev libstdc++-10-doc

[42)#3 how ?
&
is flag needed to build filezilla client ?

"Then you need to tell the compiler to use
the C++20 standard by using the
-std=c++20 flag"

[42)#4
"Check that libs got installed :"

$ apt list --installed gcc-10*
$ apt list --installed g++-10
$ apt list --installed libstdc++-10*

ref:
https://gasparri.org/2020/07/30/install ... zon-linux/

or just ?

[42)#1
$ sudo apt install g++-17
$ g++ --version

and ?

[42)#2
create hello.cc

#include <iostream>
using namespace std;

int main()
{
cout << "Hello, World!" << endl;
cout << "This code is compiled with G++ version: " << __GNUC__ << "." << __GNUC_MINOR__ << "." << __GNUC_PATCHLEVEL__ << endl;
return 0;
}

$ nano hello.cc
$ g++ -o hello hello.cc
$ ./hello

ref:
https://linuxconfig.org/how-to-install- ... ossa-linux

or ?
https://phoenixnap.com/kb/install-gcc-ubuntu

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 07:08
by botg
No idea as to the above. I'd start reading here: https://gcc.gnu.org/install/

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 07:58
by cto4autonomoussystem.ai
how to get filezilla client configure (fzcc) succeed ?

[42]#8.1
how to get filezilla client configure (fzcc) succeed ?


[42]#8.2
how to get fzcc to accept all its checking
whether the g++ compiler fzcc uses
accepts certain features ?

[42]#8.3
what to install for fzcc
has the right C++ version ?
ref:
configure: error: *** A compiler with
support for C++17 language features
is required

what was wrong/missing
in the folliwing steps
[42] #1 ...#7


[42] #1
run the following commands to add
the Ubuntu Toolchain repository:

$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update

(doing it individually did not help)
$ sudo add-apt-repository gcc
$ sudo apt-get update
$ sudo apt install gcc-10

[42] #2
Installed them with the following
commands:

$ sudo apt install gcc-10 gcc-10-base gcc-10-doc g++-10
$ sudo apt install libstdc++-10-dev libstdc++-10-doc

[42]#3
Checked that libs got installed :

$ apt list --installed gcc-10*
$ apt list --installed g++-10
$ apt list --installed libstdc++-10*

ref:
https://gasparri.org/2020/07/30/install ... zon-linux/

[42]#4

$ sudo apt-get update <-- Google Package not found
$ sudo apt install g++-17 <-- unable to locate g++-17
$ sudo apt install

how to interprete/act to the following
messages ?

[42]#4.1
g++ already the newest version

[42]#4.2
g++ set to manually installed

[42]#4.3
312 not upgraded

[42] #5 checked my g++ version
$ g++ --version
got
g++ Ubuntu (Ubuntu 4.8.2-19ubuntu1) 4.8.2

[42] #6 tried fzcc
$ sudo ./configure <-- started
....
checking ...-Warrior=partial availability
checking ig g++ supports c++17 -std=c++17
...
** no to 8 c++17 checks **

[42] #7 final statement from fzcc
configure: error: *** A compiler with
support for C++17 language features
is required

how to get it installed for fzcc ?

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 08:30
by botg
You do need a newer compiler. As stated before:
botg wrote:
2024-04-19 07:08
I'd start reading here: https://gcc.gnu.org/install/

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 08:41
by cto4autonomoussystem.ai
Why failures to fetch required g++ for fzcc ?

The folloging finally failed, why ?

1. Ctrl+alt+T (ok)

2. updated all the repositories

$ sudo apt update

3. installing g++ failed, why ?
3.1
~ it looked like my Ubuntu laptop
was not able to fetch all required
compiler component although
net connections are ok, why ?

3.2
~ some IP addresses my Ubuntu laptop
tried were not available/did not respond
why ?

3.3
~ how to define to my Ubuntu laptop
where to fetch g++ version 17
fzcc obviously requires ?


$ sudo apt install g++

4. verify

$ g++ --version <-- old

ref:
https://www.naukri.com/code360/library/ ... -on-ubuntu

[42] #6 tried fzcc
$ sudo ./configure <-- started
....
checking ...-Warrior=partial availability
checking ig g++ supports c++17 -std=c++17
...
** no to 8 c++17 checks **

[42] #7 final statement from fzcc
configure: error: *** A compiler with
support for C++17 language features
is required

how to get it installed for fzcc ?

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Posted: 2024-04-19 08:56
by cto4autonomoussystem.ai
exploring it - thanks for advice!
ref:
https://gcc.gnu.org/install/