Re: [PATCH] module: LLVMLinux: Fix section mismatch issues on alias usage

2014-02-24 Thread Behan Webster
On 02/21/14 07:08, Paul Gortmaker wrote: Attribute aliases don't inherit the link section name when compiled with clang. As a result, the linking section needs to be explicitly specified when building a module. This behavior is undefined in the standard which is why it differs from compiler to c

Re: [PATCH] module: LLVMLinux: Fix section mismatch issues on alias usage

2014-02-21 Thread Paul Gortmaker
On 14-02-20 11:28 PM, beh...@converseincode.com wrote: > From: Jan-Simon Möller ^^ This line implies that Jan is the author. > > Attribute aliases don't inherit the link section name when compiled with > clang. > As a result, the linking section needs to be explicitly specified w

[PATCH] module: LLVMLinux: Fix section mismatch issues on alias usage

2014-02-20 Thread behanw
From: Jan-Simon Möller Attribute aliases don't inherit the link section name when compiled with clang. As a result, the linking section needs to be explicitly specified when building a module. This behavior is undefined in the standard which is why it differs from compiler to compiler. Author: