Commit graph

8 commits

Author SHA1 Message Date
Sören Tempel
3bf376c057 Don't use conditional assignment operator for CFLAGS/LDFLAGS
The conditional variable assignment operator in Makefiles (`?=`) will
only assign a value if its not defined yet. However, CFLAGS/LDFLAGS are
commonly defined as environment variables to pass custom compiler/linker
flags (e.g. `-Os`). Unfortunately, Cyclone adds mandatory compiler flags
(without which it doesn't compile) via the conditional variable
assignment operator which is incorrect as these flags will not be added
if CFLAGS/LDFLAGS is defined in the environment. This commit fixes this
issue by appending flags to CFLAGS/LDFLAGS instead of using the
conditional assignment operator.
2021-08-03 06:04:11 +02:00
Justin Ethier
be8c534739 Use our local library 2019-10-17 18:18:45 -04:00
Justin Ethier
b7ee9a2e01 Sync up changes from primary config 2019-04-12 18:04:42 -04:00
Justin Ethier
16bd644abb Sync Adam's changes for Mac 2019-04-09 13:23:55 -04:00
Justin Ethier
e6ccbe77c7 Sync 2017-11-25 02:57:08 +00:00
Justin Ethier
85ab42e5d2 Update 2017-04-03 17:57:30 -04:00
Justin Ethier
342bb52b16 Sync up latest changes 2016-09-03 03:14:19 +00:00
Justin Ethier
8f1ad554d9 Use separate configs for X86 / ARM (pi 2) 2015-12-29 23:14:09 -05:00