mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
afc58a8b41
This change upgrades to the latest portcosmo gcc patch 6728fe1a25185560603ca312a8d4352af2a4e515 which lets us avoid needing to define __tmpcosmo_FOO constants. We're now using an appropriate binutils version for GCC 11. The older binutils sometimes wasn't able to print backtraces, due to not being able to find a .debug_ranges section. This is breaking change for /opt/cosmos libraries :'( due to this weird "error: need linked-to section for --gc-sections" that pops up. Please run `make clean` in the monorepo before rebuilding.
69 lines
1.8 KiB
C
69 lines
1.8 KiB
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const uint32_t B0;
|
|
extern const uint32_t B50;
|
|
extern const uint32_t B75;
|
|
extern const uint32_t B110;
|
|
extern const uint32_t B134;
|
|
extern const uint32_t B150;
|
|
extern const uint32_t B200;
|
|
extern const uint32_t B300;
|
|
extern const uint32_t B600;
|
|
extern const uint32_t B1200;
|
|
extern const uint32_t B1800;
|
|
extern const uint32_t B2400;
|
|
extern const uint32_t B4800;
|
|
extern const uint32_t B9600;
|
|
extern const uint32_t B19200;
|
|
extern const uint32_t B38400;
|
|
extern const uint32_t B57600;
|
|
extern const uint32_t B115200;
|
|
extern const uint32_t B230400;
|
|
extern const uint32_t B500000;
|
|
extern const uint32_t B576000;
|
|
extern const uint32_t B1000000;
|
|
extern const uint32_t B1152000;
|
|
extern const uint32_t B1500000;
|
|
extern const uint32_t B2000000;
|
|
extern const uint32_t B2500000;
|
|
extern const uint32_t B3000000;
|
|
extern const uint32_t B3500000;
|
|
extern const uint32_t B4000000;
|
|
|
|
#define B0 0
|
|
#define B50 B50
|
|
#define B75 B75
|
|
#define B110 B110
|
|
#define B134 B134
|
|
#define B150 B150
|
|
#define B200 B200
|
|
#define B300 B300
|
|
#define B600 B600
|
|
#define B1200 B1200
|
|
#define B1800 B1800
|
|
#define B2400 B2400
|
|
#define B4800 B4800
|
|
#define B9600 B9600
|
|
#define B19200 B19200
|
|
#define B38400 B38400
|
|
#define B57600 B57600
|
|
#define B115200 B115200
|
|
#define B230400 B230400
|
|
#define B500000 B500000
|
|
#define B576000 B576000
|
|
#define B1000000 B1000000
|
|
#define B1152000 B1152000
|
|
#define B1500000 B1500000
|
|
#define B2000000 B2000000
|
|
#define B2500000 B2500000
|
|
#define B3000000 B3000000
|
|
#define B3500000 B3500000
|
|
#define B4000000 B4000000
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_ */
|