Results 25 comments of

i think, there's no native build for m1 mac, only using rosetta.

> Actually, FOC will run the program in a shell: > > https://github.com/Jatana/FastOlympicCoding/blob/3e058e5915ffcb2e5f9fb1673bd34945c46e0940/Modules/ProcessManager.py#L74-L75 > > > So you just have to add `ulimit -s unlimited; ` at the beginning of...

> I am also facing the same issue. Earlier it was working fine but now its just stuck on compiling @Jaskaran-1914294 @srijan-keshri so, i'm taking u both m1 mac users....

> Actually, FOC will run the program in a shell: > > https://github.com/Jatana/FastOlympicCoding/blob/3e058e5915ffcb2e5f9fb1673bd34945c46e0940/Modules/ProcessManager.py#L74-L75 > > > So you just have to add `ulimit -s unlimited; ` at the beginning of...

@fxcoudert any thoughts?

newer versions of gcc is slower, we all know. is the speed difference noteworthy in arm mac?

doesnt gcc 11.3.0 (c++20) allow precompiled headers? because even with precompiled headers, i'm gettng 'x' with other headers as output. ``` C:\Users\Home\Desktop\cp>g++ -H yo.cpp x c:\mingw64\include\c++\11.3.0\x86_64-w64-mingw32\bits\stdc++.h.gch ....more headers.... ``` what...

i've tested both before and after the compilation, also changed `````` to ```"bits/stdc++.h"```. same as before.

``` g++ -std=c++20 -Winvalid-pch yo.cpp -o yo.exe yo.cpp:1:24: warning: c:\mingw64\include\c++\11.3.0\x86_64-w64-mingw32\bits\stdc++.h.gch: not used because `__OPTIMIZE__' not defined [-Winvalid-pch] 1 | #include | ^ ```