Changeset 0e64979
- Timestamp:
- 04/02/2016 09:43:14 PM (8 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- b93a076
- Parents:
- c2dde9a
- Location:
- general/prog
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general/prog/gcc-ada.xml
rc2dde9a r0e64979 237 237 </para> 238 238 239 <screen><userinput>mkdir ../gcc-build &&240 cd ../gcc-build &&241 242 ../ gcc-&gcc-ada-version;/configure\243 --prefix=/usr 244 --disable-multilib 245 --with-system-zlib 239 <screen><userinput>mkdir build && 240 cd build && 241 242 ../configure \ 243 --prefix=/usr \ 244 --disable-multilib \ 245 --with-system-zlib \ 246 246 --enable-languages=ada && 247 247 make</userinput></screen> … … 266 266 </para> 267 267 268 <screen><userinput>../ gcc-&gcc-ada-version;/contrib/test_summary</userinput></screen>268 <screen><userinput>../contrib/test_summary</userinput></screen> 269 269 270 270 <para> … … 302 302 303 303 <para> 304 <command>mkdir ../gcc-build; cd ../gcc-build</command>: The304 <command>mkdir build; cd build</command>: The 305 305 <application>GCC</application> documentation recommends 306 306 building the package in a dedicated build directory. … … 328 328 329 329 <para> 330 <option>--with-default-libstdcxx-abi= c++98</option>: Use this switch if you331 are building <application>GNAT</application> tools using a330 <option>--with-default-libstdcxx-abi=gcc4-compatible</option>: Use this 331 switch if you are building <application>GNAT</application> tools using a 332 332 <application>GCC</application> version prior to 5.1.0, 333 333 and you do not want to recompile all the libraries written in C++. … … 345 345 346 346 <para> 347 <command>../ gcc-&gcc-ada-version;/contrib/test_summary</command>: This347 <command>../contrib/test_summary</command>: This 348 348 command will produce a summary of the test suite results. You can append 349 349 <command>| grep -A7 Summ</command> to the command to produce an even more -
general/prog/gcc-java.xml
rc2dde9a r0e64979 160 160 cp ../ecj-latest.jar ./ecj.jar && 161 161 162 mkdir ../gcc-build &&163 cd ../gcc-build &&164 165 ../ gcc-&gcc-java-version;/configure\162 mkdir build && 163 cd build && 164 165 ../configure \ 166 166 --prefix=/usr \ 167 167 --disable-multilib \ … … 170 170 --enable-java-home \ 171 171 --with-jvm-root-dir=/opt/gcj \ 172 --with-antlr-jar=$(pwd)/../ antlr-&antlr-version;-complete.jar \172 --with-antlr-jar=$(pwd)/../../antlr-&antlr-version;-complete.jar \ 173 173 --enable-languages=java && 174 174 make</userinput></screen> … … 193 193 </para> 194 194 195 <screen><userinput>../ gcc-&gcc-java-version;/contrib/test_summary</userinput></screen>195 <screen><userinput>../contrib/test_summary</userinput></screen> 196 196 197 197 <para> … … 207 207 /usr/lib/gcc/*linux-gnu/&gcc-java-version;/include{,-fixed} && 208 208 209 gcj -o ecj ../ ecj-latest.jar \209 gcj -o ecj ../../ecj-latest.jar \ 210 210 --main=org.eclipse.jdt.internal.compiler.batch.Main && 211 211 mv ecj /usr/bin && … … 225 225 226 226 <para> 227 <command>mkdir ../gcc-build; cd ../gcc-build</command>: The227 <command>mkdir build; cd build</command>: The 228 228 <application>GCC</application> documentation recommends 229 229 building the package in a dedicated build directory. … … 287 287 288 288 <para> 289 <command>../ gcc-&gcc-java-version;/contrib/test_summary</command>: This289 <command>../contrib/test_summary</command>: This 290 290 command will produce a summary of the test suite results. You can append 291 291 <command>| grep -A7 Summ</command> to the command to produce an even more -
general/prog/gcc.xml
rc2dde9a r0e64979 169 169 </para> 170 170 171 <screen><userinput>mkdir ../gcc-build&&172 cd ../gcc-build&&173 174 ../ gcc-&gcc-version;/configure\171 <screen><userinput>mkdir build && 172 cd build && 173 174 ../configure \ 175 175 --prefix=/usr \ 176 176 --disable-multilib \ … … 198 198 </para> 199 199 200 <screen><userinput>../ gcc-&gcc-version;/contrib/test_summary</userinput></screen>200 <screen><userinput>../contrib/test_summary</userinput></screen> 201 201 202 202 <para> … … 232 232 233 233 <para> 234 <command>mkdir ../gcc-build; cd ../gcc-build</command>: The234 <command>mkdir build; cd build</command>: The 235 235 <application>GCC</application> documentation recommends 236 236 building the package in a dedicated build directory. … … 257 257 258 258 <para> 259 <option>--with-default-libstdcxx-abi=c++98</option>: Use this switch if you 260 are upgrading from a <application>GCC</application> version prior to 5.1.0, 261 and you do not want to recompile all the libraries written in C++. 259 <option>--with-default-libstdcxx-abi=gcc4-compatible</option>: Use this 260 switch if you are upgrading from a <application>GCC</application> 261 version prior to 5.1.0, and you do not want to recompile all the 262 libraries written in C++. 262 263 </para> 263 264 … … 273 274 274 275 <para> 275 <command>../ gcc-&gcc-version;/contrib/test_summary</command>: This276 <command>../contrib/test_summary</command>: This 276 277 command will produce a summary of the test suite results. You can append 277 278 <command>| grep -A7 Summ</command> to the command to produce an even more
Note:
See TracChangeset
for help on using the changeset viewer.