Why Do Makefile Commands Involving \'go run\' Result in Permission Denied Errors?

Susan Sarandon
Release: 2024-10-23 17:01:02
Original
233 people have browsed it

Why Do Makefile Commands Involving

Permission Denied Errors in Makefile with Go

Despite successfully running "go run ." directly, users encounter permission denied errors when invoking "make run" to execute the same command via a Makefile. This discrepancy can be attributed to a subtlety within GNU make, as revealed by the "make -d" debugging output.

The problem arises when GNU make attempts to locate the go executable. If a directory named "go" exists in a directory specified in the PATH environment variable (preceding the actual directory containing the executable), GNU make will mistakenly target this directory instead of the executable.

For instance, if a directory "/usr/bin/go/" exists and "/usr/bin" is in the PATH, GNU make will encounter a permission denied error when attempting to execute "go run .". To resolve this issue, ensure that your PATH does not contain any directories with "go" subdirectories.

If removing the problematic directories from the PATH is not feasible, you can instruct GNU make to invoke a shell by adding a semicolon ";" to the Makefile target definition. This ensures that the go executable is properly resolved, resolving the permission denied errors.

run:
    go run . ;
Copy after login

The above is the detailed content of Why Do Makefile Commands Involving \'go run\' Result in Permission Denied Errors?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!