This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Building libc does not work if cygwin is installed

I noticed this with CGT

  • This is a known issue.  Please see this wiki article.

    Thanks and regards,

    -George

  • Known for how long???
    I made a simple change:
    mklib.c:
    const char *mkdtemp(char pattern[])
    {
        /* The pattern MUST end with six X's */
    
        char *start;
        if ((start = strstr(pattern, "XXXXXX")) == NULL || *(start+6) != '\0')
        {
            errno = EINVAL;
            return NULL;
        }
    
        /*-----------------------------------------------------------------------*/
        /* This algorithm is weak, but better than nothing.  We don't expect     */
        /* expect much danger from collisions (fingers crossed).  Hopefully      */
        /* we'll get a real version of mkdtemp eventually.                       */
        /*-----------------------------------------------------------------------*/
        srand(time(NULL));
    
        for (int attempt = 0; attempt 
    now it works!
    Simple Rule: do not mix upper-case and lower case in filenames. Windows does not care, but *nix (and therefore cygwin) does!
  • oops, the essential part is missing:
                const char *chars =
    //                "abcdefghijklmnopqrstuvwxyz"
                    "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
                    "0123456789";
    
    
  • It seems your code sample was truncated.  Could you describe explicitly what it is that you changed and why it helps?  I think you're implying that you got a filename collision, which should be very rare.

  • Yes, it was. Anyway, I was only partly successful.
    But after another 2hours searching:
    The whole problem is the mixing of upper case and lower case letters in the paths.
    So what I did, it changed mkdtemp() to create only lower case + digits and "TI_MKLIBXXXXXX" to "ti_mklibXXXXXX"
    Change "OBJ" and "SRC" to "obj" and "src".
    I did compile mklib with mingw32-gcc.
    Now it builds correct from cygwin bash, msys bash. From Windows-cmd, the archive build fails, but actually, I spent already enough time to solve TI's problems :-).
    Only when starting it from CCS, I get "CreateProcess" errors, which might be related to the MinGW build and is not related to the path name problem.
    So I hope, the next compiler release will have a working mklib which does not need any work arrounds.