summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-05-14 12:37:05 +0000
committerThomas Martitz <kugel@rockbox.org>2010-05-14 12:37:05 +0000
commit3cca7e865082c8144a47687e3a2455fba5a927d5 (patch)
treeb5bf8a0d943b9af94be5ef5b47f1046ce84576e3 /firmware/SOURCES
parent3d1a85695b64029d93de631d0c6fd81c3311d6e7 (diff)
downloadrockbox-3cca7e865082c8144a47687e3a2455fba5a927d5.tar.gz
rockbox-3cca7e865082c8144a47687e3a2455fba5a927d5.zip
Include host system's header files and don't compile our c library replacements in the sim.
This makes it possible to move the simulator code into the target tree (for Rockbox as an application). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26019 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES10
1 files changed, 7 insertions, 3 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index b155a9f03d..3327fbbce6 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -21,12 +21,13 @@ timer.c
21panic.c 21panic.c
22debug.c 22debug.c
23 23
24/* Common */ 24/* Standard library */
25#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) 25#if !defined(SIMULATOR)
26#if defined(__MINGW32__) || defined(__CYGWIN__)
26libc/errno.c 27libc/errno.c
27/* alsa on linux requires a more advanced sprintf, i.e. not ours */ 28/* alsa on linux requires a more advanced sprintf, i.e. not ours */
28libc/sprintf.c 29libc/sprintf.c
29#endif /* !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) */ 30#endif /* defined(__MINGW32__) || defined(__CYGWIN__) */
30libc/atoi.c 31libc/atoi.c
31libc/ctype.c 32libc/ctype.c
32libc/memcmp.c 33libc/memcmp.c
@@ -42,6 +43,9 @@ libc/strrchr.c
42libc/strtok.c 43libc/strtok.c
43libc/strstr.c 44libc/strstr.c
44libc/mktime.c 45libc/mktime.c
46#endif /* !defined(SIMULATOR)*/
47
48/* Common */
45common/config.c 49common/config.c
46common/crc32.c 50common/crc32.c
47#ifdef MI4_FORMAT 51#ifdef MI4_FORMAT