John Paul Adrian Glaubitz

Results 98 comments of John Paul Adrian Glaubitz

This would be my suggested fix: ```diff From af53a75a5c23b1d4aec4aceadbc329997e306f15 Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Sun, 3 Dec 2023 19:01:00 +0100 Subject: [PATCH] Use sysconf()...

I just installed the OpenVPN client on Windows 11 and I'm seeing this dialog box as well with no obvious way how to actually create a configuration. After clicking "OK",...

Linking against libatomic is also needed on multiple 32-bit targets on Linux. Currently we're explicitly linking against libatomic on mips32, m68k, powerpc32 and sh4 [1]: ``` # explicitly link against...

@barracuda156 Can you test whether the following works for you: ```diff diff --git a/cmake/compilers/GNU.cmake b/cmake/compilers/GNU.cmake index cd76acfe..8282b54e 100644 --- a/cmake/compilers/GNU.cmake +++ b/cmake/compilers/GNU.cmake @@ -44,6 +44,20 @@ if (NOT MINGW) set(TBB_COMMON_LINK_LIBS...

@barracuda156 It shouldn't be required on 64-bit machines, only on 32-bit. 64-bit machines can do all the atomic operations in hardware without the need of a helper library. FWIW, it's...

@barracuda156 Well, if you just run a small compile test during cmake stage, you can actually dynamically verify whether a given target needs `libatomic` or not. I think that's the...

> Well. I could have imagined that there would be reluctance to add libraries unilaterally since that puts a burden on code that does not need them (I don't recall...

@barracuda156 > P. S. What do you think about static assert case above btw? If any ideas/suggestions. Haven't seen this issue on 32-bit PowerPC on Linux. With the libatomic fix,...

On Dec 11, 2022, at 1:30 PM, Sergey Fedorov ***@***.***> wrote: @barracuda156 commented on this pull request. In test/conformance/conformance_allocators.cpp: > @@ -31,13 +31,15 @@ TEST_CASE("Allocator concept") { TestAllocator(Concept); TestAllocator(Concept); +...

> @Mister-X- , > > > What are the results with current git? > > I cannot test on the Debian porter boxes because I don't have access to them....