Are Remote makefile targets supported?
Answered
From the "full remote development" page I can see that there is support for Makefile applications in the "Run/Debug Configurations" section. Is it accurate to say that there is currently no support for remote Makefile targets?
Please sign in to leave a comment.
Hello!
Yes, the remote mode is not supported for Makefile Target configurations.
Any plans to add these? My code lives on a remote server that I ssh into. I use CLion to modify code since the partition is mounted on the remote machine and any changes on my local host are reflected on the remote machine. I can't compile any of my remote targets. I don't build an "application" as such so I can't use that option.
There are no such plans currently.
You can still try using Makefile Application configurations and selecting in it either a required make target from detected ones, or a custom build target with type Make (see https://www.jetbrains.com/help/clion/makefiles-support.html#create-makefile-config). But you need not to run this Makefile Application configuration, but to build it. In this case the target should be launched remotely.
Nice, building the target works.