diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-07-10 21:38:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-07-10 21:46:57 -0400 |
commit | b0b2e9c4aaa793cf38aa26646f2130cca2f49d83 (patch) | |
tree | adc3d27b61da7211888ba013c4e96138b5e11d22 /src/declfunc.lds.S | |
parent | 409904c61c750dd9b2ae9a4e8b3e997c06676b72 (diff) | |
download | kutter-b0b2e9c4aaa793cf38aa26646f2130cca2f49d83.tar.gz kutter-b0b2e9c4aaa793cf38aa26646f2130cca2f49d83.tar.xz kutter-b0b2e9c4aaa793cf38aa26646f2130cca2f49d83.zip |
build: Avoid objcopy --dump-section flag
Commit da305e6b changed the objcopy command to use the --dump-section
flag. However, the 2.24 version of avr-objcopy (which is common on
raspbian installs) does not support this flag. Avoid using
--dump-section and continue to use the -j option instead.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/declfunc.lds.S')
-rw-r--r-- | src/declfunc.lds.S | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declfunc.lds.S b/src/declfunc.lds.S index 2226300c..1f178643 100644 --- a/src/declfunc.lds.S +++ b/src/declfunc.lds.S @@ -31,7 +31,4 @@ SECTIONS .compile_time_request.parsers 0 (INFO) : { *( .compile_time_request.parsers ) } - .compile_time_request (INFO) : { - *( .compile_time_request ) - } } |