- Created a macro for const section declarations.
Diff Detail
Event Timeline
Hi,
You guys seem to be the most active in compiler-rt repo. Can you please review and commit? (or suggest somebody more appropriate). Thanks!
I've submitted permission change to sanitizer_common_interceptors_ioctl.inc in r223715.
Looks like changes to make/platform should also include clang_macho_embedded.mk.
lib/builtins/assembly.h | ||
---|---|---|
45 | I'd rather leave this part of the change out. We don't have a good way to test if the target is COFF, which these directives target, not specifically Windows. | |
make/config.mk | ||
47 ↗ | (On Diff #16978) | Whats the reason for sinking the -fPIC into the individual makefiles rather than keeping it here? |
lib/builtins/assembly.h | ||
---|---|---|
45 | ok | |
make/config.mk | ||
47 ↗ | (On Diff #16978) | mingw gcc issues a warning for each compiled file: "-fPIC ignored for target (all code is position independent)", which doesn't go well together with -Werror. On second thought, -fno-PIC seems to override it, so perhaps I'll drop this change and instead add a special case when building for Windows. |
I'd rather leave this part of the change out. We don't have a good way to test if the target is COFF, which these directives target, not specifically Windows.