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 best solutions below
Related Questions in MAKEFILE
- Error trying to generate Makefile for glBinding
- Eclipse Makefile: Make Variables are skipped
- Errors in makefile for qemu 0.14.1 in ubuntu 15.04 64 bit
- C++ Struct prototyping in separate header file
- Reuse jquery plugin without conflict
- How do I a conditional build through a make file?
- basic makefile ifeq how to
- (automake, libtool) build fails in automake when using same source file name in different directory
- Makefile pattern rules differences
- Errors while trying to run make on source code
- Git tag name as version in Go via Travis-CI
- gcc make -properly sort out the sequence of making object files
- AOSP ROM for Samsung Grand duos GT-i9082 Error loading kernel
- How to address multiple definition compiler error
- How does MAKE remember the file timestamps
Related Questions in GNU-MAKE
- How do I a conditional build through a make file?
- basic makefile ifeq how to
- gmake ignores files dependent on -include files
- how to parallel sub-make?
- GNU make - depend only on file existence and not modification time
- GNU make - making one task do another task as well
- Can't execute makefile in Windows 7
- How does GNU make's "file" function work?
- add dependencies to a library, and add them to a binary which depends on that library
- GNU make not recognizing suffix rule
- generate conditional block with automake
- What does the following makefile command do? /no-symbols-control-file
- makefile library dependencies - resolve circular dependency
- GNUStep base make error
- GNU make - Target with several recipes where only one recipe is needed
Related Questions in LONG-PATH
- PowerShell Batch rename.item $_ fails, "Could not find item"
- Starting win32 application from a long path
- Getting File not found error" with zipfile module python
- How to properly handle windows paths with the long path prefix with std::filesystem::path
- How to enable "Long Path Aware" behavior for setting the current directory in a C++ windows console app
- Filename too Long in GitKraken for Windows
- MSBuild 16 and Windows Server 2012 r2 - long path error
- Makefile include directive failing for long path Windows 10
- 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?
- ALINK error 1065 even when Windows Long Paths enabled
- How can I add directory with long name files (more 260 symbols) to CMake CPack NSIS win installer?
- Long path support in Filesystem watcher control
- C# Windows 10 OpenFileDialog with long path
- Windows long path as current directory
- How can I use the Win32::LongPath module in Perl to manipulate long path names?
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)
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?
There can be different ways on how you handle this:
C:mount/shortpathoption to use short paths.