From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x536.google.com (mail-ed1-x536.google.com [IPv6:2a00:1450:4864:20::536]) by sourceware.org (Postfix) with ESMTPS id 36ABA3858D38 for ; Tue, 20 Sep 2022 16:02:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 36ABA3858D38 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ed1-x536.google.com with SMTP id z2so4562799edi.1 for ; Tue, 20 Sep 2022 09:02:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date; bh=cguq3+d2DmJLPj14tredANj4x7Xhkv7CGsQJfx7PPrM=; b=YCZdKAJcwd5qlIDB6VWklrdAoOhhlDcl59fQkLZ8ikItAyEK7SL8b7rqILsFvp1KR8 jqsC7+LC8HgmVF2GddN/JH/jPqgxABQ74PN2I4Q1mx+1ySwtnsgVF5KsEA8C0Z5akgH3 NemgoNMJj9RBqh12IonHWWzbS1fleI80Y/erSJI35DPsjw8gIPvr9ir/ahx0jceoJtDB OWbz4kZvxLOgu70cHmNhDDEEhtFLh2PpLa6bXuHoY23OO17ELHDWjLURYb/ZL0kvmlLw I7bpyL3KDH0IMpzGQVSr/xPV2mh5I26YaaAvz419A0DfXHCzWPkGHu90BNG4C8YOLJ/h ZzAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date; bh=cguq3+d2DmJLPj14tredANj4x7Xhkv7CGsQJfx7PPrM=; b=ZLQ927IznCg0unFm8B0F234ZuyjN3oO93l7LFmM+7nYW/zzrcncHRD4Z48bk7nABEQ BI/OV+wd0hOb28yIQIQZqZzbmObclTYMKM507CC4Vy+Gw8o3TWvjsuRtDOS/QrS2dlJt 3aZpwBKGpud0pgHtVtN316ntMyaPuTBHe9ozy503VZsMjYxpVu1Yf1aTR4iFLiTzZkSd XoVBAyCPc4IFd2r5aQ28x/Hlimagp3l3zjsw13v7ClWgmOuUVH+/mZHVCuOcPlkD6TYx TLh1iOESQ21MUHFpNvSjtVOn7qmZkB/hzddqTxcqjrc317LmFb4T2cvTJr3sKJ8xRaiR kijw== X-Gm-Message-State: ACrzQf1os2cQozEcR/8ODd7rpBA9HXa7Vq49tVfBrrRoSXZKkDMqBb9g AWemkuCkei4SkhRVYPRV4YcV1Tah9wF3zqXhJDSHUPwglRXxcA== X-Google-Smtp-Source: AMsMyM5o+/gl+CcUJIETTOFhHWUtR2F+p2gB9AU+iyBAhngAFEPAn8DQquZYcmCNQwWfj9qRs0OySgAoxkPMLgsCOkI= X-Received: by 2002:a05:6402:4d9:b0:451:f433:dced with SMTP id n25-20020a05640204d900b00451f433dcedmr20951855edw.42.1663689772007; Tue, 20 Sep 2022 09:02:52 -0700 (PDT) MIME-Version: 1.0 From: mizo 91 Date: Tue, 20 Sep 2022 18:02:41 +0200 Message-ID: Subject: CreateProcess No such file or directory To: gcc-help@gcc.gnu.org Content-Type: multipart/alternative; boundary="000000000000e087a705e91df5c2" X-Spam-Status: No, score=1.5 required=5.0 tests=BAYES_40,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --000000000000e087a705e91df5c2 Content-Type: text/plain; charset="UTF-8" Hello, I'm having trouble compiling simple test program on windows 10 with long list of includes provided via '@response_file' argument The full error is: gcc.exe: fatal error: cannot execute 'C:/Tools/x86_64-12.2.0-release-win32-seh-rt_v10-rev0/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/as.exe': CreateProcess: No such file or directory compilation terminated. Above path to the assembler program is valid therefore I don't understand what is the issue here? You can try to recreate the problem by compiling simple main.c file with nothing in it but main function using command: gcc @includes.txt main.c I assume it has something to do with windows 32k CreateProcess command length limitation? But isn't that the reason why respone files were invented? Regards, Filip --000000000000e087a705e91df5c2--