aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndrew Waterman <aswaterman@gmail.com>2019-01-15 11:31:27 -0800
committerGitHub <noreply@github.com>2019-01-15 11:31:27 -0800
commit66c13fd4a9c1c2eda51df35ddc13e095469faec7 (patch)
treeab87fa9f201640737681ea1e1b45eeed27e6c7f8 /Makefile.in
parenta02257a861a4d13f31868a27c197cfc5576101e1 (diff)
downloadriscv-pk-66c13fd4a9c1c2eda51df35ddc13e095469faec7.zip
riscv-pk-66c13fd4a9c1c2eda51df35ddc13e095469faec7.tar.gz
riscv-pk-66c13fd4a9c1c2eda51df35ddc13e095469faec7.tar.bz2
Revert "Don't require a RISC-V libc and crt when configuring (#132)" (#140)
This reverts commit a02257a861a4d13f31868a27c197cfc5576101e1.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index e41684e..376670d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -111,7 +111,7 @@ COMPILE := $(CC) -MMD -MP $(CFLAGS) \
# - LIBS : Library flags (eg. -l)
LD := $(CC)
-LDFLAGS := @LDFLAGS@ $(LDFLAGS) $(march) $(mabi)
+LDFLAGS := @LDFLAGS@ -nostartfiles -nostdlib -static $(LDFLAGS) $(march) $(mabi)
LIBS := @LIBS@
LINK := $(LD) $(LDFLAGS)