diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-28 15:28:30 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-28 15:28:30 +0300 |
commit | 168a9ce863715d32a5375553e781506de201d4cf (patch) | |
tree | cf8f7def65b6a680e57d4d9ca339fd230d9318c9 /unix | |
parent | ae13758dd756b53a0265c1834601648ddb36fda3 (diff) | |
download | micropython-168a9ce863715d32a5375553e781506de201d4cf.tar.gz micropython-168a9ce863715d32a5375553e781506de201d4cf.zip |
Revert "Fix DEBUG=1 builds"
This reverts commit 6e76f7bc90fcd130db888f8804b8555dc8f3a484.
This patch tries to workaround a previous clang workaround. Instead of going
into workaround of workaround spiral, the original workaround should be tamed.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/unix/Makefile b/unix/Makefile index 6c89d06579..ffc3391a14 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -71,10 +71,6 @@ SRC_C = \ modos.c \ $(SRC_MOD) -# Without -fomit-frame-pointer, DEBUG builds fail since the code tries -# to manipulate the frame pointer register -$(BUILD)/gccollect.o: CFLAGS += -fomit-frame-pointer - ifeq ($(UNAME_S),Darwin) # Must be the last file in list of sources SRC_C += seg_helpers.c |