Thread overview | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
November 09, 2006 bud problems | ||||
---|---|---|---|---|
| ||||
I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff. Am I using bud incorrectly? Here's my brf file: ------------- # Damn, envvars like %DMDDIR% don't work -g -debug -I..\..\baxissimo -I..\..\ext example1 --------------- and I run with >> bud @example1 Thanks, --bb |
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bill Baxter | Bill Baxter wrote:
> I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff.
>
> Am I using bud incorrectly?
>
> Here's my brf file:
>
> -------------
> # Damn, envvars like %DMDDIR% don't work
> -g
> -debug
> -I..\..\baxissimo
> -I..\..\ext
> example1
> ---------------
>
> and I run with
> >> bud @example1
>
> Thanks,
> --bb
You aren't using it incorrectly so far as I can immediately see, and I'm also not sure what's causing your problem. However, that said, if simply deleting the object files is enough to work around it, add the "-cleanup" switch to your BRF file to cause 'bud' to delete them automatically at the end of its run. This should at least get you working again until someone with more of a clue can figure out what's gone wrong. :)
-- Chris Nicholson-Sauls
|
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Chris Nicholson-Sauls | Chris Nicholson-Sauls wrote: > Bill Baxter wrote: >> I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff. >> >> Am I using bud incorrectly? >> > > You aren't using it incorrectly so far as I can immediately see, and I'm also not sure what's causing your problem. However, that said, if simply deleting the object files is enough to work around it, add the "-cleanup" switch to your BRF file to cause 'bud' to delete them automatically at the end of its run. This should at least get you working again until someone with more of a clue can figure out what's gone wrong. :) > > -- Chris Nicholson-Sauls Ah, ok. Thanks -cleanup is indeed better than "del *.obj *\*.obj && bud @example1". It doesn't take that long to rebuild everything anyway. --bb |
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bill Baxter | On Thu, 09 Nov 2006 10:32:30 +0900, Bill Baxter wrote: > I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff. > > Am I using bud incorrectly? > > Here's my brf file: > > ------------- > # Damn, envvars like %DMDDIR% don't work > -g > -debug > -I..\..\baxissimo > -I..\..\ext > example1 > --------------- > > and I run with > >> bud @example1 > This looks fine. There seems to be an issue where somehow the object files get out of sync with source files but I haven't found out anything causing it yet. It maybe related to templates but I'm not sure. In the meantime, use either "-full" to force a compilation of all source files, and/or use "-clean" to have Bud delete work files (.obj etc ...) after successful compilation. -- Derek (skype: derek.j.parnell) Melbourne, Australia "Down with mediocrity!" 9/11/2006 1:28:09 PM |
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Derek Parnell | Derek Parnell wrote: > On Thu, 09 Nov 2006 10:32:30 +0900, Bill Baxter wrote: > >> I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff. >> >> Am I using bud incorrectly? >> > > This looks fine. There seems to be an issue where somehow the object files > get out of sync with source files but I haven't found out anything causing > it yet. It maybe related to templates but I'm not sure. Is bud a-ok with = and :'s in imports? import submodule = mypackage.submodule.detail; import std.stdio : writefln; And also note that I'm renaming submodule.detail to just submodule. Could that be confusing bud? > > In the meantime, use either "-full" to force a compilation of all source > files, and/or use "-clean" to have Bud delete work files (.obj etc ...) > after successful compilation. > Thanks. --bb |
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bill Baxter | On Thu, 09 Nov 2006 12:15:01 +0900, Bill Baxter wrote: > Is bud a-ok with = and :'s in imports? > > import submodule = mypackage.submodule.detail; > import std.stdio : writefln; > > And also note that I'm renaming submodule.detail to just submodule. Could that be confusing bud? Yes, these forms are okay to use. In the first form, the module's real name is the stuff after the '=', and in the second is the stuff before the ':'. Bud doesn't need to know how you use the module name in your code, just that you are importing it. -- Derek (skype: derek.j.parnell) Melbourne, Australia "Down with mediocrity!" 9/11/2006 2:40:25 PM |
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Derek Parnell | Derek Parnell wrote:
> On Thu, 09 Nov 2006 12:15:01 +0900, Bill Baxter wrote:
>
>
>>Is bud a-ok with = and :'s in imports?
>>
>> import submodule = mypackage.submodule.detail;
>> import std.stdio : writefln;
>>
>>And also note that I'm renaming submodule.detail to just submodule. Could that be confusing bud?
>
>
> Yes, these forms are okay to use. In the first form, the module's real name
> is the stuff after the '=', and in the second is the stuff before the ':'.
> Bud doesn't need to know how you use the module name in your code, just
> that you are importing it.
One more thing:
I've got two files called "base.d". One at the root level, one in a subdirectory. Could that cause problems?
--bb
|
November 09, 2006 Re: bud problems | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bill Baxter | I'm getting that too ... around 20 files now, one directory. Randomly occuring access violations which disappear after inserting a debug-writefln and saving again (thus updating the timestamp), linker errors with templates which disappear after saving a certain file again, etc. Anyway, it's no big deal, since I've figured it out I do a make clean (yeah, ... I've got a batch file called "make" to call build :) ) every once in a while. Compared to C++ and "oh, sigh, I need to change a header file - so make clean it is, I'll get a smoke while the compiler takes its 4 minutes and chokes on a typo after 3 minutes" that's not even annoying. 4 minutes compiling compared to an access violation, 10 seconds of "WTF?" and 3 seconds of building the complete project is great. Nothing to complain about. In my last job I had to wait 30-45 minutes when changing a header file ... that was even nicer. -Mike Am 09.11.2006, 02:32 Uhr, schrieb Bill Baxter <dnewsgroup@billbaxter.com>: > I seem to have to delete all my object files before running bud if I want to not get link errors and not have spurious crashes in the exe. This project has 11 files or so in two directories. Linker errors seem to mostly be from template stuff. > > Am I using bud incorrectly? > > Here's my brf file: > > ------------- > # Damn, envvars like %DMDDIR% don't work > -g > -debug > -I..\..\baxissimo > -I..\..\ext > example1 > --------------- > > and I run with > >> bud @example1 > > Thanks, > --bb -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ |
Copyright © 1999-2021 by the D Language Foundation