diff options
author | Andrew Waterman <andrew@sifive.com> | 2021-07-28 17:04:21 -0700 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2021-07-28 17:04:21 -0700 |
commit | c8e510ec65e401832a1a3d8493a20b6b6705f957 (patch) | |
tree | 96730249ac0993bc3cb03b5a421d9924dcf92280 /fesvr | |
parent | 74b49a97fe4b381ad0e81b1e3240153a98f587af (diff) | |
download | riscv-isa-sim-c8e510ec65e401832a1a3d8493a20b6b6705f957.zip riscv-isa-sim-c8e510ec65e401832a1a3d8493a20b6b6705f957.tar.gz riscv-isa-sim-c8e510ec65e401832a1a3d8493a20b6b6705f957.tar.bz2 |
Significantly speed up compilation with GCC
Precompiled headers were broken because they weren't compiled with
the same -fPIC setting as the rest of the code. Fix by just making
everything use -fPIC.
Diffstat (limited to 'fesvr')
-rw-r--r-- | fesvr/fesvr.mk.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fesvr/fesvr.mk.in b/fesvr/fesvr.mk.in index 079c1b1..695de52 100644 --- a/fesvr/fesvr.mk.in +++ b/fesvr/fesvr.mk.in @@ -15,8 +15,6 @@ fesvr_hdrs = \ rfb.h \ tsi.h \ -fesvr_CFLAGS = -fPIC - fesvr_install_hdrs = $(fesvr_hdrs) fesvr_install_config_hdr = yes |