diff options
author | Fangrui Song <maskray@google.com> | 2022-09-27 11:42:32 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-09-27 11:42:32 -0700 |
commit | 382fa97ce0eb1119266607e2802fd29318ed2d78 (patch) | |
tree | 60423b2a4ee46a1802fedc05db9ffdf834567fc5 /sim/ppc | |
parent | f7aa1a5acc5faa03ed6c640a426ef70a5f328940 (diff) | |
download | gdb-382fa97ce0eb1119266607e2802fd29318ed2d78.zip gdb-382fa97ce0eb1119266607e2802fd29318ed2d78.tar.gz gdb-382fa97ce0eb1119266607e2802fd29318ed2d78.tar.bz2 |
sim: Link ZSTD_LIBS
This fixes linker errors in a `../../configure --enable-targets
--enable-sim; make all-gdb` build.
Diffstat (limited to 'sim/ppc')
-rw-r--r-- | sim/ppc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 33d7df9..b0c073b 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -522,7 +522,7 @@ PACKAGE_OBJ = @sim_pk_obj@ psim$(EXEEXT): $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBINTL_DEP) - $(ECHO_CCLD) $(CC) $(CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(ZLIB) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS) + $(ECHO_CCLD) $(CC) $(CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(ZLIB) $(ZSTD_LIBS) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS) run$(EXEEXT): psim$(EXEEXT) $(SILENCE) rm -f $@ |