Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
fix noexecstack assembler flag
Browse files Browse the repository at this point in the history
- "clang -cc1as" only accepts the double dashed version
  • Loading branch information
MartinNowak committed Dec 25, 2012
1 parent 89cbe7b commit cebca23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posix.mak
Expand Up @@ -620,7 +620,7 @@ $(OBJDIR)/errno_c.o : src/core/stdc/errno.c

$(OBJDIR)/threadasm.o : src/core/threadasm.S
@mkdir -p $(OBJDIR)
$(CC) -Wa,-noexecstack -c $(CFLAGS) $< -o$@
$(CC) -Wa,--noexecstack -c $(CFLAGS) $< -o$@

################### Library generation #########################

Expand Down

0 comments on commit cebca23

Please sign in to comment.