I have a Makefile that includes another makefile with the include makefile directive and the included Makefile exists on a deep path (200 characters). The Makefile doesn't produce any error on reading the long path Makefile however it's contents are not included in the main Makefile.
include <long-path>/my.mk
I have tried using UNC path post script as well but that also seems to have no effect. Any help how to handle long paths inclusions in Makefiles?
Makefile include directive failing for long path Windows 10
257 views Asked by sbunny At
1
There are 1 answers
Related Questions in MAKEFILE
- How to refer to the filepath of test data in test sourcecode?
- Can't connect to postgres with Adminer using Docker on MacOS
- Flint installation error: make: *** [build/generic_files/memory_manager.lo] Error 1
- How to compile the Linux kernel with -O0 for more detailed debug?
- Makefile:7: *** missing separator. Stop (HELP NEEDED)
- Trying to compile GCC returns a bunch of errors
- cmake and g++ cross compilation looking for library in host sysroot path instead of target sysroot
- Turn a makefile into a list of build commands
- make test error with Golang: make: *** [Makefile:47: manifests] Error 126
- Passing optional arguments from makefile to shell script
- GNU make file pairwise combinations of files in folder
- make Error 2, The system cannot find the file specified
- Why do I get a make: *** No target specified and no makefile error?
- why does Make give error while compiling?
- CMake always rebuilding included file even if it didn't change
Related Questions in GNU-MAKE
- Turn a makefile into a list of build commands
- GNU make file pairwise combinations of files in folder
- Handling whitespace in GNU Make foreach
- Makefile Pattern recipe for filename copying and renaming as temporary file
- Why is the last file not recompiled?
- string array pattern in Makefiles
- Make - Override variables with something like dotenv
- Running GREP command in windows build system
- How do I mark a variable private across imports in Gnu Make?
- Fortran compilation dependency of modules and INCLUDE statement with make
- How to resolve a makefile override issue when its the same target
- Build gcc with a different name
- GNU make: Don't delete intermediate files on error that happened elsewhere
- Makefile loop through sourcefiles
- `make` in Windows stopped working because of "write error"
Related Questions in LONG-PATH
- C# Windows 10 OpenFileDialog with long path
- PowerShell Batch rename.item $_ fails, "Could not find item"
- How to install RASA 3.X without Docker or enabling Windows Long Path Support, to install its Tensorflow dependency, that has risk of file corruption?
- Filename too Long in GitKraken for Windows
- FileSytemWatcher: GetLongPathName for a deleted file
- How can I add directory with long name files (more 260 symbols) to CMake CPack NSIS win installer?
- ALINK error 1065 even when Windows Long Paths enabled
- How to enable "Long Path Aware" behavior for setting the current directory in a C++ windows console app
- How to properly handle windows paths with the long path prefix with std::filesystem::path
- Long path support in Filesystem watcher control
- How can I use the Win32::LongPath module in Perl to manipulate long path names?
- Windows long path as current directory
- Makefile include directive failing for long path Windows 10
- Getting File not found error" with zipfile module python
- configure npm&webpack Win10 for long paths using relative paths
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
There can be different ways on how you handle this:
C:mount/shortpathoption to use short paths.