diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2010-07-03 20:58:22 +0000 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2010-07-03 20:58:22 +0000 |
| commit | b8286d45be0cdaffccfe684dde7385e2c042141d (patch) | |
| tree | d956deba40cb7d43c36ec070301205f2cd120607 /uisimulator | |
| parent | 66381088e7e402f865b937c80e7c80f18c97e039 (diff) | |
| download | rockbox-b8286d45be0cdaffccfe684dde7385e2c042141d.zip rockbox-b8286d45be0cdaffccfe684dde7385e2c042141d.tar.gz rockbox-b8286d45be0cdaffccfe684dde7385e2c042141d.tar.bz2 rockbox-b8286d45be0cdaffccfe684dde7385e2c042141d.tar.xz | |
Move -Wl,-z,defs to GLOBAL_LDOPTS (instead of GCCOPTS), to avoid noise in older gcc output when not linking
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27260 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
| -rw-r--r-- | uisimulator/uisimulator.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/uisimulator.make b/uisimulator/uisimulator.make index 219d890..7efffe9 100644 --- a/uisimulator/uisimulator.make +++ b/uisimulator/uisimulator.make @@ -28,7 +28,7 @@ $(SIMLIB): $$(SIMOBJ) $(UIBMP) # SIMLIB needs to be linked twice for some reason $(BUILDDIR)/$(BINARY): $$(OBJ) $(SIMLIB) $(VOICESPEEXLIB) $(FIRMLIB) $(SKINLIB) - $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(SIMLIB) $(LDOPTS) + $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(SIMLIB) $(LDOPTS) $(GLOBAL_LDOPTS) $(BUILDDIR)/uisimulator/%.o: $(ROOTDIR)/uisimulator/%.c $(SILENT)mkdir -p $(dir $@) |