diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-17 00:49:53 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-17 00:49:53 +0000 |
commit | a875f28d8e853072bc0e4963d8537637086218cc (patch) | |
tree | d1e1abfc2f8be12110b9737d85c30901ae17783e | |
parent | 86c8ee950daa48193a6c0aac3e582854cc59fb0f (diff) |
disable linux memcpy implementation because of missing alignment traps
git-svn-id: https://svn.openpcd.org:2342/trunk@112 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
-rw-r--r-- | openpcd/firmware/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openpcd/firmware/Makefile b/openpcd/firmware/Makefile index d5548eb..d9f902c 100644 --- a/openpcd/firmware/Makefile +++ b/openpcd/firmware/Makefile @@ -105,7 +105,8 @@ ASRC = ASRCLIB = lib/changebit.S lib/clearbit.S lib/setbit.S lib/testchangebit.S \ lib/testclearbit.S lib/testsetbit.S ifdef DEBUG -ASRCLIB += lib/memcpy.S lib/memset.S lib/lib1funcs.S lib/div64.S +#ASRCLIB += lib/memcpy.S lib/memset.S lib/lib1funcs.S lib/div64.S +ASRCLIB += lib/lib1funcs.S lib/div64.S endif # List Assembler source files here which must be assembled in ARM-Mode.. |