diff options
Diffstat (limited to 'extra/Configs/Config.v850e')
-rw-r--r-- | extra/Configs/Config.v850e | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/extra/Configs/Config.v850e b/extra/Configs/Config.v850e index e7bc97ab9..7e0135707 100644 --- a/extra/Configs/Config.v850e +++ b/extra/Configs/Config.v850e @@ -30,10 +30,11 @@ PROJ_UCLINUX=/proj/soft2/uclinux # Cross compile on i386-pc-linux-gnu DESTDIR=$(PROJ_UCLINUX)/i386-pc-linux-gnu/v850e-linux +NATIVE_CC = gcc + # If you are running a cross compiler, you may want to set this # to something more interesting... Target architecture is determined # by asking this compiler what arch it compiles stuff for. -NATIVE_CC = gcc CROSS = v850e-elf- CC = $(CROSS)gcc AR = $(CROSS)ar @@ -129,7 +130,20 @@ INCLUDE_RPC = false # Protocol: IP version 6, enable this. This is off by default. INCLUDE_IPV6 = false +# If you want to support only Unix 98 PTYs enable this. Some older +# applications may need this disabled. For most current programs, +# you can generally leave this true. +UNIX98PTY_ONLY = true + +# Enable this if /dev/pts is on a devpts or devfs file system. Both +# these filesystems automatically manage permissions on the /dev/pts +# devices. You may need to mount this fs on /dev/pts for this to work. +# This is true by default. +ASSUME_DEVPTS = true + + # If you want to compile the library as PIC code, turn this on. +# This is automagically enabled when HAVE_SHARED is true DOPIC = false # String prefixed to all user symbol names by the C compiler. Usually |