[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gambas-bugtracker] Bug #2884: Different behavior of project compiled by Ide and gbc3


http://gambaswiki.org/bugtracker/edit?object=BUG.2884&from=L21haW4-

Comment #6 by Christof THALHOFER:

Sorry, I was wrong with the compile command. It is compiled and packed with these commands in a makefile:

gbc3 -a deg-betrieb
gba3 -o deg-betrieb

This is done sucessfully since 2016. Here's the original code of the makefile:

.PHONY: libs 
libs: 
    @echo Kompiliere Gambas Libraries 
    $(foreach lib,$(LIBS),gbc3 -a ./libs/$(lib);) 
    @# der Name der lib ist z.B. deglib-gb:1.4.gambas 
    @# so kommt die version 
    @# grep Version .project | cut -d "=" -f 2 | cut -d "." -f1,2 
    @# $(foreach lib,$(LIBS),gba3 -o $(templib)/$(lib).gambas ./libs/$(lib);) 
    $(foreach lib,$(LIBS),gba3 -o $(templib)/$(lib):$(call versionstring,$(lib)).gambas ./libs/$(lib);)


----[ Gambas bugtracker-list is hosted by https://www.hostsharing.net ]----