#162 (relative include path works but absolute does not) – The Yasm Modular Assembler Project
Modify

Ticket #162 (closed defect: duplicate)

Opened 21 months ago

Last modified 21 months ago

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

Attachments

Change History

comment:1 Changed 21 months ago by peter@…

  • Status changed from new to closed
  • Resolution set to duplicate

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

View

Add a comment

Modify Ticket

Action
as closed
The resolution will be deleted. Next status will be 'reopened'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.