mirror of
https://review.haiku-os.org/buildtools
synced 2026-02-04 07:53:14 +01:00
Compare commits
4 Commits
btrev43216
...
btrev43220
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
360fe2fd07 | ||
|
|
58add95cfc | ||
|
|
400880c468 | ||
|
|
d86b03dc2b |
@@ -1221,7 +1221,7 @@ powerpc*-*-freebsd*)
|
||||
esac
|
||||
;;
|
||||
powerpc-*-haiku*)
|
||||
tmake_file="$tmake_file rs6000/t-ppccomm rs6000/t-savresfpgr rs6000/t-crtstuff rs6000/t-crtstuff-pic t-fdpbit"
|
||||
tmake_file="$tmake_file rs6000/t-ppccomm rs6000/t-savresfgpr rs6000/t-crtstuff rs6000/t-crtstuff-pic t-fdpbit"
|
||||
;;
|
||||
powerpc-*-netbsd*)
|
||||
tmake_file="$tmake_file rs6000/t-netbsd rs6000/t-crtstuff"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Makefile for jam
|
||||
|
||||
CC = cc
|
||||
CFLAGS = -O
|
||||
CFLAGS = -O -DOPT_HEADER_CACHE_EXT -DOPT_JAMFILE_CACHE_EXT -DOPT_JAM_TARGETS_VARIABLE_EXT
|
||||
EXENAME = ./jam0
|
||||
TARGET = -o $(EXENAME)
|
||||
HOST_SYSTEM=$(shell uname)
|
||||
@@ -64,7 +64,8 @@ SOURCES = \
|
||||
filent.c fileos2.c fileunix.c filevms.c glob.c hash.c \
|
||||
headers.c jam.c jambase.c jamgram.c lists.c make.c make1.c \
|
||||
newstr.c option.c parse.c pathunix.c pathvms.c regexp.c \
|
||||
rules.c scan.c search.c timestamp.c variable.c
|
||||
rules.c scan.c search.c timestamp.c variable.c \
|
||||
jcache.c hcache.c
|
||||
|
||||
all: $(EXENAME)
|
||||
LINKLIBS=$(LINKLIBS) $(EXENAME)
|
||||
|
||||
10
jam/jam.h
10
jam/jam.h
@@ -429,7 +429,8 @@
|
||||
# endif
|
||||
# endif
|
||||
|
||||
# ifdef __sparc__
|
||||
# if defined( __sparc__ ) || \
|
||||
defined( __sparc64__)
|
||||
# if !defined( OS_SUNOS )
|
||||
# define OSPLAT "OSPLAT=SPARC"
|
||||
# endif
|
||||
@@ -441,7 +442,8 @@
|
||||
# endif
|
||||
# endif
|
||||
|
||||
# ifdef __arm__
|
||||
# if defined( __arm__ ) || \
|
||||
defined(__aarch64__)
|
||||
# define OSPLAT "OSPLAT=ARM"
|
||||
# endif
|
||||
|
||||
@@ -455,6 +457,10 @@
|
||||
# define OSPLAT "OSPLAT=390"
|
||||
# endif
|
||||
|
||||
# ifdef __riscv
|
||||
# define OSPLAT "OSPLAT=RISCV"
|
||||
# endif
|
||||
|
||||
# ifndef OSPLAT
|
||||
# define OSPLAT ""
|
||||
# endif
|
||||
|
||||
Reference in New Issue
Block a user