Re: [cfarm-users] Bug tracking system for requests?

2018-03-09 Thread cheusov--- via cfarm-users
09.03.2018, 20:40, "Segher Boessenkool via cfarm-users" : > On Fri, Mar 09, 2018 at 08:22:05PM +0300, vle--- via cfarm-users wrote: >>  Hi. Is there any bug tracking system for servers in compile farm? >>  I'd like to ask some one to install flex-dev package to gcc112, >>  but I don't where to ask

[cfarm-users] Who can run gcc220/OpenBSD again?

2020-01-08 Thread Aleksey Cheusov via cfarm-users
Hello folks. Is there any plan to run up gcc220 running OpenBSD? As far as I can see it's downtime since august. ___ cfarm-users mailing list cfarm-users@lists.tetaneutral.net https://lists.tetaneutral.net/listinfo/cfarm-users

[cfarm-users] cfarm240: I'd like to change login shell

2023-11-23 Thread Aleksey Cheusov via cfarm-users
Hi every one. I'd like to change my login shell on cfarm240 to /usr/local64/bin/bash, but chsh(1) command requires root privileges. Can any one help? ___ cfarm-users mailing list cfarm-users@lists.tetaneutral.net https://lists.tetaneutral.net/listinfo/c

[cfarm-users] cfarm103: broken clang++-16

2024-04-25 Thread Aleksey Cheusov via cfarm-users
Can any one please fix broken clang++ on cfarm103? 0 ~>cat ~/tmp/2.cc #include int main(int argc, char **argv) { std::cout << "Hello"; return 0; } 0 ~>clang++ -o ~/tmp/2 ~/tmp/2.cc /home/cheusov/tmp/2.cc:1:10: fatal error: 'iostream' file not found #include ^~ 1 error

[cfarm-users] cfarm103: broken clang++-16

2024-04-25 Thread Aleksey Cheusov via cfarm-users
Can any one please fix broken clang++ on cfarm103? 0 ~>cat ~/tmp/2.cc #include int main(int argc, char **argv) { std::cout << "Hello"; return 0; } 0 ~>clang++ -o ~/tmp/2 ~/tmp/2.cc /home/cheusov/tmp/2.cc:1:10: fatal error: 'iostream' file not found #include ^~ 1 error

Re: [cfarm-users] cfarm103: broken clang++-16

2024-04-26 Thread Aleksey Cheusov via cfarm-users
> On Thu, 2024-04-25 at 20:36 +0100, Jonathan Wakely via cfarm- > users wrote: >> On Thu, 25 Apr 2024 at 20:29, Aleksey Cheusov via cfarm-users >> wrote: >> > Can any one please fix broken clang++ on cfarm103? >> > ... >> >> None of these

[cfarm-users] Resetting the password does't work

2024-04-26 Thread Aleksey Cheusov via cfarm-users
Hi every one. In order to change my public ssh key I have to login to https://portal.cfarm.net/ but I forgot my password. After clicking on "Reset" button it says Password reset sent We've emailed you instructions for setting your password, if an account exists with the email you entered

Re: [cfarm-users] Resetting the password does't work

2024-04-26 Thread Aleksey Cheusov via cfarm-users
> Password reset works. The email is sent to the email address on file. > Your CFARM email account is not defined as gmx.net. > Thanks, David Wow! You are right. I really register assigned another email. Thanks! ___ cfarm-users mailing list cfarm-users

[cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Aleksey Cheusov via cfarm-users
Hi every one. I'm trying to port libbsd to Solaris-10. In particular I want to add support for fgetln(3), getline(3) and getdelim(3). I'm in truble with autoconf. Updated sources are here (branch "main") https://github.com/cheusov/libbsd/tree/main The problem is below. Can any one help? cheusov@

Re: [cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Aleksey Cheusov via cfarm-users
> Based on just a couple minutes looking at the autoconf/automake goop, it > appears that AM_CONDITIONAL is called for all the ABI_ identifiers > via LIBBSD_SELECT_ABI (defined in m4/libbsd-compiler.m4). So, you are > missing a LIBBSD_SELECT_ABI([getdelim], SOMETHING) in configure.ac. I have the