ksdhans

Results 26 issues of ksdhans

I just tried recompiling ZitaFTP with libamisslstubs.a instead of statically linking in OpenSSL just for libcurl, and got the following: ThirdParty/AmigaOSLibs/newlib/lib/libcurl.a(libcurl_la-openssl.o): In function `servercert': openssl.c:(.text+0x1dd4): undefined reference to `SSL_get_peer_certificate' openssl.c:(.text+0x2430):...

The current installer's behaviour is to quit with an error if AmiSSL is in use. It would be more flexible if it were to simply install the files, and ask...

AmigaOS4

Std::strtold() is still missing. Looking in the cstdlib header file, it's been excluded via multiple #ifndef __amigaos4__ blocks. Strtold() is now available, so this should be removed.

Std::wstring is currently undefined, which is a problem when using/porting code that requires it. People are implementing workarounds such as: https://www.amigans.net/modules/newbb/viewtopic.php?post_id=113200#forumpost113200 Could we get this fixed, so that workarounds can...

Attempting to use std::trunc() results in: error: ‘trunc’ is not a member of ‘std’ According to the C++11 spec, it should be set in cmath. I tried defining _GLIBCXX_USE_C99_MATH_TR1 in...

From here: https://amigaworld.net/modules/newbb/viewtopic.php?mode=viewtopic&topic_id=43666&forum=17&start=60&viewmode=flat&order=0 Running the example code from https://en.cppreference.com/w/cpp/thread/call_once does **not** produce the correct result. The output is: Simple example: called once throw: call_once will retry And then nothing happens...

Compiling with -athread=pthread results in a "cannot find gthr-amigaos-pthread.o" error (with gcc 8.1.0 build 20181211-695)

I'm getting threading related linker errors when compiling code that is single threaded, unless I set -athread=single (or native). This is with existing code that compiled fine with previous GCC...

I get a host of "not declared" errors related to wchar handling when using the -mcrt=clib2 option with G++ v8.1.0. You can test this easily: 1. Create a source file...

Just tried out the C++11 threading, and it's great to have it working. However, I got a heap of "undefined reference" errors the first time I tried to compile, because...