Ticket #162 (closed defect: duplicate)
relative include path works but absolute does not
| Reported by: | wzrlpy@… | Owned by: | |
|---|---|---|---|
| Priority: | P3 | Milestone: | |
| Component: | Misc | Version: | other |
| Severity: | normal | Keywords: | include |
| Cc: |
Description
Hi,
An issue with yasm 0.7.2.2153 under Cygwin.
The FFmpeg compilation (out of source tree) produces this command that fails:
yasm -f win32 -DARCH_X86_32 -DPREFIX -I /home/Inma/src/ffmpeg-15759/src/libavcodec/i386/ -o libavcodec/i386/fft_mmx.o /home/Inma/src/ffmpeg-15759/src/libavcodec/i386/fft_mmx.asm yasm: FATAL: unable to open include file `x86inc.asm'
However, when I rewrite the include path in a relative way, it works fine:
yasm -f win32 -DARCH_X86_32 -DPREFIX -I ../src/libavcodec/i386/ -o libavcodec/i386/fft_mmx.o /home/Inma/src/ffmpeg-15759/src/libavcodec/i386/fft_mmx.asm
The fft_mmx.asm file references the include as follows:
%include "x86inc.asm"
Let me know if you need further information.
Thanks in advance for your help, Víctor Paesa

Duplicate of #157, which was fixed in [2157].