-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binary release would be great #9
Comments
|
In case anyone else hits this, after downloading the ARM embedded developer toolchain and making the following change, I was able to build the raspbootin diff --git a/raspbootin/Makefile b/raspbootin/Makefile
index e868739..b7bc353 100644
--- a/raspbootin/Makefile
+++ b/raspbootin/Makefile
@@ -45,7 +45,7 @@ WARNFLAGS += -Wno-sign-compare -Wswitch -Wsystem-headers
WARNFLAGS += -Wno-pragmas -Wno-unused-but-set-parameter
WARNFLAGS += -Wno-unused-but-set-variable -Wno-unused-result
WARNFLAGS += -Wwrite-strings -Wdisabled-optimization -Wpointer-arith
-WARNFLAGS += -Werror
+WARNFLAGS += -Wno-error
ASFLAGS := $(INCLUDES) $(DEPENDFLAGS) -D__ASSEMBLY__
CXXFLAGS := $(INCLUDES) $(DEPENDFLAGS) $(BASEFLAGS) $(WARNFLAGS)
CXXFLAGS += -fno-exceptions -std=gnu++11 When base64 encoded,
|
Note, I've made #10 with a fix for building both
(the |
This looks like you have your cross compiler compiler with exceptions enabled and the -fno-exceptions has no effect. Does this have to be included in the linker call too maybe? |
I'm having some problems building the raspbootin
kernel.img
file. Since it should be pretty small in size, is it possible to include it in the repo, or add it as a github release? Many thanks in advance!The text was updated successfully, but these errors were encountered: