mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 03:47:02 -05:00
gcc/ChangeLog: * config.gcc (*-*-openbsd*): Set rust_target_objs and target_has_targetrustm. * config/t-openbsd (openbsd-rust.o): New rule. * config/openbsd-rust.cc: New file.
13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
# We don't need GCC's own include files.
|
|
USER_H = $(EXTRA_HEADERS)
|
|
|
|
# OpenBSD-specific D support.
|
|
openbsd-d.o: $(srcdir)/config/openbsd-d.cc
|
|
$(COMPILE) $<
|
|
$(POSTCOMPILE)
|
|
|
|
# OpenBSD-specific Rust support.
|
|
openbsd-rust.o: $(srcdir)/config/openbsd-rust.cc
|
|
$(COMPILE) $<
|
|
$(POSTCOMPILE)
|