diff options
author | Ian Romanick <[email protected]> | 2005-07-02 08:29:57 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-07-02 08:29:57 +0000 |
commit | f0ff50d4edbeab5aa0df349772ed2eda64878282 (patch) | |
tree | 6128d8aa814ddd6ab374710743ff79cfc3c2282c /configs | |
parent | 1a9cac10b85aed9f93d765a1569dbaeb658a9def (diff) |
Add support for assembly (static) dispatch functions on x86-64. This
is basically patch #2939 from X.org bugzilla #3379. This does *not*
fix the bug as it does not dynamically generate stubs at run-time. It
just gets things one step closer.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/freebsd-dri-amd64 | 1 | ||||
-rw-r--r-- | configs/linux-dri-x86-64 | 2 | ||||
-rw-r--r-- | configs/linux-x86-64 | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/configs/freebsd-dri-amd64 b/configs/freebsd-dri-amd64 index f5783772120..ffddfd83542 100644 --- a/configs/freebsd-dri-amd64 +++ b/configs/freebsd-dri-amd64 @@ -6,3 +6,4 @@ include $(TOP)/configs/freebsd-dri CONFIG_NAME = freebsd-dri-x86-64 ASM_FLAGS = -DUSE_X86_64_ASM +ASM_SOURCES = $(X86-64_SOURCES) $(X86-64_API) diff --git a/configs/linux-dri-x86-64 b/configs/linux-dri-x86-64 index 850673cb50e..ac935557819 100644 --- a/configs/linux-dri-x86-64 +++ b/configs/linux-dri-x86-64 @@ -8,7 +8,7 @@ CONFIG_NAME = linux-dri-x86-64 ARCH_FLAGS = -m64 ASM_FLAGS = -DUSE_X86_64_ASM -ASM_SOURCES = $(X86-64_SOURCES) +ASM_SOURCES = $(X86-64_SOURCES) $(X86-64_API) LIB_DIR = $(TOP)/lib64 diff --git a/configs/linux-x86-64 b/configs/linux-x86-64 index 25f8a2d5e0d..f8ff5489f18 100644 --- a/configs/linux-x86-64 +++ b/configs/linux-x86-64 @@ -6,7 +6,7 @@ CONFIG_NAME = linux-x86-64 ARCH_FLAGS = -m64 -ASM_SOURCES = $(X86-64_SOURCES) +ASM_SOURCES = $(X86-64_SOURCES) $(X86-64_API) ASM_FLAGS = -DUSE_X86_64_ASM LIB_DIR = $(TOP)/lib64 |