Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello everyone,
It is my first time trying to change something on a github repository that I do now own, so I am not sure if forking it and then making a pull request is the way to go so sorry about that part.
So, in Source Installation, it says that you need to have "gcc >=4.4.7" but there is an issue with it now. In the newest version which is 14.1+ , the GCC compiler no longer tolerates some errors and thus it terminates the installation when using "make" (https://gcc.gnu.org/gcc-14/porting_to.html#c). The only way to bypass it is to add the following line on the CMakeList.txt :
Add the -fpermissive flag
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fpermissive")
After doing that, I managed to finish the installation and check that the executables were running fine. If there is something else that I need to mention or do please tell me!
I have attached an image of the error that I was getting.