~ubuntu-branches/debian/sid/atlas/sid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-06-14 21:26:47 UTC
  • Revision ID: james.westby@ubuntu.com-20100614212647-4bagrwa5jtpp7080
Tags: 3.8.3-22ubuntu2
* debian/rules: 
  - reenable the armel build, as it's working in a qemu (thanks tumbleweed!).
    The Debian build lasted 40 hours... Be patient!.
  - Changed sse3 to sse2 as the builds does not yet support it. This mean that
    sse3 packages will only be optimized for sse2 for the moment.
* debian/control: deleted -sse3 and -core2sse3 packages at it's not supported
  by hte buildds from the moment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU)
8
8
DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
9
9
 
10
 
ifneq (, $(filter $(DEB_HOST_ARCH_CPU), arm armel))
11
 
  $(error atlas doesn't build on arm, not terminating on the buildd)
12
 
endif
13
 
 
14
10
CHECK_EXTENSIONS=""
15
11
 
16
12
# Pointer bitwidth (default value)
45
41
 
46
42
ifeq ($(DEB_HOST_ARCH_CPU),i386)
47
43
ifneq ($(DEB_BUILD_ARCH),kfreebsd-i386)
48
 
CHECK_EXTENSIONS=sse3
 
44
CHECK_EXTENSIONS=sse2
49
45
endif
50
 
ARCHS = base_10_1 sse_10_16 sse2_17_24 sse3_17_28 core2sse3_14_28
 
46
ARCHS = base_10_1 sse_10_16 sse2_17_24
51
47
# 10 = PII  17 = P4
52
48
DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse = $(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse:$(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse/atlas
53
49
DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse2 = $(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2:$(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2/atlas
54
 
DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse3 = $(CURDIR)/debian/libatlas3gf-sse3/usr/lib/atlas-sse3:$(CURDIR)/debian/libatlas3gf-sse3/usr/lib/atlas-sse3/atlas
55
 
DEB_SHLIBDEPS_INCLUDE_libatlas3gf-core2sse3 = $(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3:$(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3/atlas
56
50
endif
57
51
 
58
52