Displaying 1 result from an estimated 1 matches for "uamg".
Did you mean:
uam
2004 Sep 18
0
[LLVMdev] MAXPATHLEN' undeclared (first use this function)
...r
>header files in the system specific Path.cpp for Interix as seen above:
>---------------------------------
>#include <limits.h>
>
>// Include the generic Unix implementation
>#include "../Unix/Path.cpp"
>
>...
>---------------------------------
1) The UAMG says to include all API from Interix one should define
_ALL_SOURCE before the first header file included. In the LLVM project
preferably on the commandline as -D_ALL_SOURCE because it applies to all
source files.
2) Inclusion of <limits.h> in Path.cpp is superflocius, because it is
indir...