mirror of
git://slackware.nl/current.git
synced 2025-01-02 06:19:52 +01:00
7 lines
281 B
Text
7 lines
281 B
Text
|
#!/bin/bash
|
||
|
# Doing this for 32-bit... sigh. May have to try to figure out how to only
|
||
|
# use it in 32-bit userspace even when running under a 64-bit kernel.
|
||
|
/usr/bin/ld.gold --no-map-whole-files --no-keep-memory --no-keep-files-mapped "$@"
|
||
|
# Old simple way:
|
||
|
#/usr/bin/ld.gold "$@"
|