diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:18:27 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:18:27 +0000 |
commit | 316d58822dada9440bd06ecfc758dcc2364d617c (patch) | |
tree | fe72ec2e6ce9a360dda74d9d57f7acdb0e3c39d6 /make/platform/multi_arch.mk | |
parent | 0230fcf22fe7d19f03d981c9c2c59a3db0b72ea5 (diff) | |
download | src-316d58822dada9440bd06ecfc758dcc2364d617c.tar.gz src-316d58822dada9440bd06ecfc758dcc2364d617c.zip |
Vendor import of compiler-rt trunk r290819:vendor/compiler-rt/compiler-rt-trunk-r290819
Notes
Notes:
svn path=/vendor/compiler-rt/dist/; revision=311120
svn path=/vendor/compiler-rt/compiler-rt-trunk-r290819/; revision=311121; tag=vendor/compiler-rt/compiler-rt-trunk-r290819
Diffstat (limited to 'make/platform/multi_arch.mk')
-rw-r--r-- | make/platform/multi_arch.mk | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/make/platform/multi_arch.mk b/make/platform/multi_arch.mk deleted file mode 100644 index fe6ac4be0eb4..000000000000 --- a/make/platform/multi_arch.mk +++ /dev/null @@ -1,15 +0,0 @@ -Description := Example configuration for build two libraries for separate \ -architectures. - -Configs := m32 m64 -Arch := i386 -Arch.m64 := x86_64 - -CC := clang - -CFLAGS := -Wall -Werror -CFLAGS.m32 := $(CFLAGS) -m32 -O3 -CFLAGS.m64 := $(CFLAGS) -m64 -O3 - -FUNCTIONS := moddi3 floatundixf udivdi3 -FUNCTIONS.m64 := $(FUNCTIONS) lshrdi3 |