rakepp 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/lib/rakepp/gcccompiler.rb +8 -3
- data/lib/rakepp/linuxcompiler.rb +8 -0
- metadata +1 -1
data/Rakefile
CHANGED
data/lib/rakepp/gcccompiler.rb
CHANGED
@@ -174,11 +174,11 @@ def addExeTasks(artifact)
|
|
174
174
|
command += " #{o}"
|
175
175
|
end
|
176
176
|
|
177
|
-
command +=
|
177
|
+
command += startOfLibs
|
178
178
|
LibHelper.tr_libs(artifact.libs).each do |lib|
|
179
179
|
command += addLib(task, lib)
|
180
180
|
end
|
181
|
-
command +=
|
181
|
+
command += endOfLibs
|
182
182
|
|
183
183
|
sh command
|
184
184
|
doAdditionalWorkForExe(artifact)
|
@@ -190,7 +190,12 @@ def addExeTasks(artifact)
|
|
190
190
|
All.add(artifact.outFile)
|
191
191
|
directory exesName
|
192
192
|
end
|
193
|
-
|
193
|
+
def startOfLibs
|
194
|
+
return ''
|
195
|
+
end
|
196
|
+
def endOfLibs
|
197
|
+
return ''
|
198
|
+
end
|
194
199
|
def doAdditionalWorkForExe(artifact)
|
195
200
|
end
|
196
201
|
|
data/lib/rakepp/linuxcompiler.rb
CHANGED