]> Git Repo - secp256k1.git/commitdiff
Actually pass CFLAGS_FOR_BUILD and LDFLAGS_FOR_BUILD to linker
authorTim Ruffing <[email protected]>
Sun, 10 Feb 2019 10:58:52 +0000 (11:58 +0100)
committerTim Ruffing <[email protected]>
Sun, 10 Feb 2019 10:58:52 +0000 (11:58 +0100)
Makefile.am

index 0b9ceca9682edb5af6af4a0726970614de75ce4f..80fca490a59a81ba3be540cb278a3d9f5115a5f4 100644 (file)
@@ -158,7 +158,7 @@ gen_%.o: src/gen_%.c
        $(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) -c $< -o $@
 
 $(gen_context_BIN): $(gen_context_OBJECTS)
-       $(CC_FOR_BUILD) $^ -o $@
+       $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $^ -o $@
 
 $(libsecp256k1_la_OBJECTS): src/ecmult_static_context.h
 $(tests_OBJECTS): src/ecmult_static_context.h
This page took 0.025705 seconds and 4 git commands to generate.