Skip to content

Commit

Permalink
Debug build.
Browse files Browse the repository at this point in the history
  • Loading branch information
weetmuts committed Aug 25, 2023
1 parent d2e7fc0 commit 496aa95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ jobs:
sudo chmod 666 /dev/fuse
sudo chown root:$USER /etc/fuse.conf
- run: ./configure
- run: make
- run: make VERBOSE=
- run: echo "DONE BUILDING"
- run: make test
3 changes: 3 additions & 0 deletions make/Main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -123,18 +123,21 @@ $(OUTPUT_ROOT)/$(TYPE)/beak-media: $(BEAK_OBJS) $(BEAK_MEDIA_OBJS)
$(VERBOSE)$(CXX) -o $@ $(LDFLAGS_$(TYPE)) $(LDFLAGS) $(BEAK_OBJS) $(BEAK_MEDIA_OBJS) \
$(LDFLAGSBEGIN_$(TYPE)) $(OPENSSL_LIBS) $(ZLIB_LIBS) $(FUSE_LIBS) $(LIBRSYNC_LIBS) $(LDFLAGSEND_$(TYPE)) $(MEDIA_LIBS) -lpthread
$(VERBOSE)$(STRIP_COMMAND) $@
@echo Done linking $(TYPE) $(CONF_MNEMONIC) $@

$(OUTPUT_ROOT)/$(TYPE)/beak: $(BEAK_OBJS) $(BEAK_NO_MEDIA_OBJS)
@echo Linking $(TYPE) $(CONF_MNEMONIC) $@
$(VERBOSE)$(CXX) -o $@ $(LDFLAGS_$(TYPE)) $(LDFLAGS) $(BEAK_OBJS) $(BEAK_NO_MEDIA_OBJS) \
$(LDFLAGSBEGIN_$(TYPE)) $(OPENSSL_LIBS) $(ZLIB_LIBS) $(FUSE_LIBS) $(LIBRSYNC_LIBS) $(LDFLAGSEND_$(TYPE)) -lpthread
$(VERBOSE)$(STRIP_COMMAND) $@
@echo Done linking $(TYPE) $(CONF_MNEMONIC) $@

$(OUTPUT_ROOT)/$(TYPE)/testinternals: $(TESTINTERNALS_OBJS) $(BEAK_NO_MEDIA_OBJS)
@echo Linking $(TYPE) $(CONF_MNEMONIC) $@
$(VERBOSE)$(CXX) -o $@ $(LDFLAGS_$(TYPE)) $(LDFLAGS) $(TESTINTERNALS_OBJS) $(BEAK_NO_MEDIA_OBJS) \
$(LDFLAGSBEGIN_$(TYPE)) $(OPENSSL_LIBS) $(ZLIB_LIBS) $(FUSE_LIBS) $(LIBRSYNC_LIBS) $(MEDIA_LIBS) $(LDFLAGSEND_$(TYPE)) -lpthread
$(VERBOSE)$(STRIP_COMMAND) $@
@echo Done linking $(TYPE) $(CONF_MNEMONIC) $@

$(OUTPUT_ROOT)/$(TYPE)/libgcc_s_seh-1.dll: /usr/lib/gcc/x86_64-w64-mingw32/5.3-win32/libgcc_s_seh-1.dll
cp /usr/lib/gcc/x86_64-w64-mingw32/5.3-win32/libgcc_s_seh-1.dll $@
Expand Down

0 comments on commit 496aa95

Please sign in to comment.