- Make exports per-architecture.

- Remove x86-only libc exports from ARM version of NTDLL.


svn path=/trunk/; revision=34672
This commit is contained in:
ReactOS Portable Systems Group 2008-07-22 09:54:52 +00:00
parent 3949f16431
commit 49deb2850d
3 changed files with 1079 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@
<group>
<module name="ntdll" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_NTDLL}" installbase="system32" installname="ntdll.dll">
<bootstrap installbase="$(CDOUTPUT)/system32" />
<importlibrary definition="def/ntdll.def" />
<importlibrary definition="def/ntdll_$(ARCH).def" />
<include base="ntdll">inc</include>
<include base="ntdll" root="intermediate">def</include>
<include base="ReactOS">include/reactos/subsys</include>
@ -35,6 +35,11 @@
<file>dispatch.S</file>
</directory>
</if>
<if property="ARCH" value="arm">
<directory name="arm">
<file>stubs_asm.S</file>
</directory>
</if>
<ifnot property="ARCH" value="i386">
<file>dispatch.c</file>
</ifnot>