Eclipse: c / C ++ assembly / linker settings page is disabled (gray), settings cannot be changed

I have an empty C ++ project in Eclipse and I want to use my own makefile. When I go to the project properties and click on “C / C ++ Build”, the “Builder Options” tab is disabled and I cannot configure the build command.

How can I apply my own makefile?

+6
source share
2 answers

you can only configure linker options if you select an empty makefile project.

delete the project, saving the contents to disk. then click file -> new -> C ++ project. instead of selecting the "empty project" under "executable", select the "empty project" in the "project makefile" section.

+5
source

The problem is relevant for windows and appears when you use toolchains. I found a small hack to fix it .

+6
source

Source: https://habr.com/ru/post/908222/


All Articles