Pelles C > Announcements

Version 10.00 (RC1) is now available

<< < (10/10)

Marco:
Here how to reproduce the issue. Please, create the following 3 files into the BIN folder of PellesC:

comp.bat

--- Code: ---@ECHO OFF

CALL povars64.bat
set INCLUDE=\Include;%INCLUDE%

pocc -W1 -Gd -Go -Ze -Zx -MT -Tamd64-coff -D_WIN32_WINNT=0x0600 %1.c
polink -subsystem:windows -machine:x64 %1.obj %1.res

--- End code ---

test1.c

--- Code: ---#include "..\header.h"

--- End code ---

test2.c

--- Code: ---#include "..\..\header.h"

--- End code ---

Start a CMD shell, go to the above BIN folder and then execute:

comp test1.c

Output:

--- Code: ---Setting 64-bit environment for Pelles C...
test1.c(3): fatal error #1035: Can't find include file "..\header.h".
POLINK: fatal error: File not found: 'test1.obj'.

--- End code ---

comp test2.c

Output:

--- Code: ---Setting 64-bit environment for Pelles C...
fatal error: Internal error: 'Access violation' at 0x0000000077581d1e.
POLINK: fatal error: File not found: 'test2.obj'.

--- End code ---

I hope this helps.

Pelle:

--- Quote from: Marco on June 25, 2020, 02:42:45 PM ---Here how to reproduce the issue. Please, create the following 3 files into the BIN folder of PellesC:
...
I hope this helps.

--- End quote ---
Sure did. Now I can reproduce this. Will have a look...

Navigation

[0] Message Index

[*] Previous page

Go to full version