Eric K Richardson

Results 394 comments of Eric K Richardson

The `delimcc` is another factor - that should be a feature option somehow.

The code should match the spec for sure. In general, there are problems with structs because we do not have named structs and posix does not specify the order so...

See https://clang.llvm.org/docs/UsersManual.html#clang-cl Also see This https://github.com/scala-native/scala-native/issues/3076 I tried hacking the build to compile using `clang-cl` which seems to be recommended for MSVC but I end up with the following. ```scala...

It used to be fine, that is how single threaded performance got really good on the benchmarks. Immix couldn't do the trick. That is how I remember it anyway.

I found this on SOF. https://stackoverflow.com/questions/11350878/how-can-i-determine-if-the-operating-system-is-posix-in-c In C++17 (and C as a [GCC](https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html) and [clang](https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html) extension), there is now a `__has_include operator` that can be used in `#if` directives. This...

Let me followup with the sbt folks. It used to work so not sure now.

I tried to run `test-all` and it was a disaster too on latest. I will retry on Java 17 MacOS 12.6.7 ``` % clang --version Apple clang version 14.0.0 (clang-1400.0.29.202)...

I usually run `sandbox2_13/run` to check the distro. This is the newest version that doesn't require extra compiling like for Scala 3. `tests2_13/test` would be second if working on this...

I reran `test-all` with Java 17 and got this. ``` [error] (sbtScalaNative / scripted) Failed tests: [error] run/build-library-dynamic [error] run/build-library-static [error] run/execution-context [error] run/java-io-file-output-stream [error] run/java-net-server-socket [error] run/java-net-socket [error] run/junit...

I am wondering if it is easy to fix this one for 2.12? I had `mutable.ArrayStack` for 2.12. Now 2.13 deprecates that so we change `ArrayStack` back to `Stack` and...