- Add patch to compile H5detect without optimization - make detection of
datatype characteristics more robust - esp. long double
- Update signal patch
- Drop destdir patch fixed upstream
- Drop scaleoffset patch
- Re-add -fno-strict-aliasing
- Keep settings file needed for -showconfig (bug #481032)
- Wrapper script needs to pass arguments (bug #481032)
10 lines
162 B
Bash
10 lines
162 B
Bash
#!/bin/bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
case $ARCH in
|
|
x86_64 | ppc64 | ia64 | s390 ) BITS=64;;
|
|
* ) BITS=32;;
|
|
esac
|
|
|
|
exec $0-${BITS} "$@"
|