-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another compiler error #153
Comments
Just wanted to update here, I fixed the compiler error by using an older compiler (gcc/g++ 11) without the Here are the steps documented: sudo dpkg --add-architecture i386 && sudo apt-get update
sudo apt-get install g++-11 g++-11-multilib gcc-11 gcc-11-multilib
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 11
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 11
echo -e "1\n" | sudo update-alternatives --config gcc
echo -e "1\n" | sudo update-alternatives --config g++
cmake-gui . Select Retail from combo box. cd ../buildRetail
make -j$(nproc) Result: It works, and it builds static with ALL_STATIC optimized for your CPU. Output in the Highly recommend get this into docker container. As if user forgets to set compiler back, it can cause issues. This can be done with: echo -e "0\n" | sudo update-alternatives --config gcc
echo -e "0\n" | sudo update-alternatives --config g++ |
Thanks for the report. Sadly due to Ubuntu WSL jerking off with CMake (no, that's not a bad worded phrase) I can't replicate the issue in order to fix it. |
I would much rather compile things for myself natively for my CPU's instruction set. This is by preference and of course not a requirement, but I do so anyway for that extra 5-10% in performance. Especially for games. But, thank you for making it easy for folks to download/use. There's no need to Caps-Lock the issue. Once agian wanting to compile from source is definitely by preference. Speed issues The game runs extremely fast on my system and gains a 7% performance boost from being built specifically for my CPU's instruction set. Almost too fast...still messing with frame sync settings trying to dial those down as projectiles, enemy AI, and fire rate are increased in speed well beyond stock now...even with vsync on. Its become something I've had to tune thanks to my system being newer. As it increases the difficulty of the original title immensely. For example:
It should be mentioned that I am playing with Ultimate HD -- This mod increases graphical fidelity. It does not change any physics, enemy AI, or rebalance any mobs. What's coming out of the game right now would be as if running stock zBFA. Despite these issues, I've managed to make it all the way to Comms Transfer while racking up close to 80 deaths....on a new save I tested it on. Concerns It isn't stated any where that Classic-RBDOOM drastically increases the base game's difficulty through its increase in speed. So I think this may be a result of optimizing the game for my system.. It seems to run 4x faster than the original (even with VSync on and using a 60 hz monitor, physics run very fast). Thanks to having experience with FPS, alone, and a complete DOOM 2016/DOOM Eternal Ultra Nightmare playthrough, I'm trained...but I don't recommend this for casuals in current format. The difficulty increase over running this fast is fine for me, but I understand it may not be for more traditional players that want closer to a stock experience... I think the game itself ingoring the VSync setting has a lot to do with what I had to do to proton prefix in Steam to get achievements to load correctly. I used protontricks here to get the game to work properly. I'm not willing to complain, since I enjoyed it. But I wish we had speed hacks so we could slow physics back down to the original standard on modern systems. |
Hi there. The original compiler issue with gcc 13 is now fixed. |
Describe the bug
Hey there, realized that I closed my issue too soon. Here's another compiler error. Rather than reiterate my system specs, I'll get straight to the error.
To Reproduce
Compile the project per the documentation with the retail cmake preset. I just used
cmake-gui .
when in the neo folder.Expected behavior
The build succeeds, and you have working build output.
Screenshots
This time, here's some more terminal log:
Additional context
Here's my version of GCC:
gcc --version
From research, seems to be a compiler bug. Using precomipled headers has no effect. Code should be modified to work around this bug. I'm not a C++ programmer. The comments around this area of
PacketProcessor.cpp
:Considering the code comments referring to malicious packet protection and my lack of experience with C++, best leave it to the experts.
Also side note, libglew1 and libglew-dev are installed, but not found when generatring, I noticed in the
cmake-gui
. I'm not sure if this is relevant or not.The text was updated successfully, but these errors were encountered: