aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--flake.nix7
2 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3e3a420..773f3d7 100644
--- a/Makefile
+++ b/Makefile
@@ -24,9 +24,11 @@ all: $(BUILD_DIR) $(BUILD_ROOT_DIR)/$(TARGET)
$(BUILD_DIR):
@mkdir -p $(BUILD_DIR)
+# TODO: provide release build?
$(BUILD_ROOT_DIR)/$(TARGET): $(OBJECTS)
$(CC) -Wall -MMD -g -O0 -o $@ $^
+# TODO: provide release build?
$(BUILD_DIR)/%.o: src/%.c
$(CC) -c -Wall -MMD -g -O0 -o $@ $<
diff --git a/flake.nix b/flake.nix
index 385fcc1..5952538 100644
--- a/flake.nix
+++ b/flake.nix
@@ -36,6 +36,10 @@
pname = "ducc";
version = "0.1.0";
src = ./.;
+ # Disable some kinds of hardening to disable GCC optimization.
+ # cf. https://nixos.wiki/wiki/C#Hardening_flags
+ # TODO: provide release build?
+ hardeningDisable = [ "fortify" ];
installPhase = ''
mkdir -p $out/bin
cp build/ducc $out/bin
@@ -46,6 +50,9 @@
packages = [
pkgs.just
];
+ # Disable some kinds of hardening to disable GCC optimization.
+ # cf. https://nixos.wiki/wiki/C#Hardening_flags
+ hardeningDisable = [ "fortify" ];
};
formatter = treefmt.config.build.wrapper;