Remove translation of file paths

This would also pass all the source and object files to linker, which is not desirable.
pull/4132/head
GoaLitiuM 6 years ago
parent d2483d4412
commit fd4c996a67
  1. 5
      mesonbuild/compilers/d.py

@ -327,11 +327,6 @@ class DCompiler(Compiler):
# a linker search path.
dcargs.append('-L=' + arg)
continue
elif arg.startswith('/') or arg.startswith('./'):
# absolute (or relative) paths passed to the linker may be static libraries
# or other objects that we need to link.
dcargs.append('-L=' + arg)
continue
dcargs.append(arg)

Loading…
Cancel
Save